annotate design_primers.xml @ 6:f201e8c6e004 draft default tip

Uploaded
author ben-warren
date Mon, 07 Jul 2014 19:28:17 -0400
parents b321e0517be3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
1 <?xml version="1.0"?>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
2 <tool id="Genetic_Marker_Design_2" name="Design primers to features">
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
3 <description>Design PCR Primers to Features</description>
5
b321e0517be3 Uploaded
ben-warren
parents: 1
diff changeset
4 <command interpreter="python -W ignore">
b321e0517be3 Uploaded
ben-warren
parents: 1
diff changeset
5 #if 'Yes' in $uMelt.value
b321e0517be3 Uploaded
ben-warren
parents: 1
diff changeset
6 design_primers.py -i $inputfastaFile -g $inputSNPfile -T $inputTargetfile -p $min_size -P $max_size -u > $primer_outputfile
b321e0517be3 Uploaded
ben-warren
parents: 1
diff changeset
7 #else
b321e0517be3 Uploaded
ben-warren
parents: 1
diff changeset
8 design_primers.py -i $inputfastaFile -g $inputSNPfile -T $inputTargetfile -p $min_size -P $max_size > $primer_outputfile
b321e0517be3 Uploaded
ben-warren
parents: 1
diff changeset
9 #end if
b321e0517be3 Uploaded
ben-warren
parents: 1
diff changeset
10 </command>
b321e0517be3 Uploaded
ben-warren
parents: 1
diff changeset
11
0
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
12 <inputs>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
13 <param format="fasta" name="inputfastaFile" type="data" label="Multifasta Source file" />
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
14 <param format="gff3" name="inputSNPfile" type="data" label="annotation file(Gff3)" />
1
a0689dc29b7f Updated vcf to gff conversion tool
john-mccallum
parents: 0
diff changeset
15 <param format="txt" name="inputTargetfile" type="data" optional="false" label="Target file" help="IN FORMAT Sequence id:source:type:start e.g. 1174806:gsMapper:SNP:292" ></param>
0
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
16 <param name="min_size" size="20" type="text" value="75" label="Minimum Product Size Range" />
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
17 <param name="max_size" size="20" type="text" value="100" label="Maximum Product Size Range" />
5
b321e0517be3 Uploaded
ben-warren
parents: 1
diff changeset
18 <param name="uMelt" type="select" label="uMelt prediction for HRM">
b321e0517be3 Uploaded
ben-warren
parents: 1
diff changeset
19 <option value="No" selected= "true">No</option>
b321e0517be3 Uploaded
ben-warren
parents: 1
diff changeset
20 <option value="Yes">Yes</option>
b321e0517be3 Uploaded
ben-warren
parents: 1
diff changeset
21 </param>
b321e0517be3 Uploaded
ben-warren
parents: 1
diff changeset
22 </inputs>
0
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
23 <outputs>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
24 <data format="tabular" name="primer_outputfile" />
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
25 </outputs>
6
f201e8c6e004 Uploaded
ben-warren
parents: 5
diff changeset
26 <stdio>
f201e8c6e004 Uploaded
ben-warren
parents: 5
diff changeset
27 <exit_code range="1:" level="fatal" description="Fatal Error" />
f201e8c6e004 Uploaded
ben-warren
parents: 5
diff changeset
28 </stdio>
0
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
29 <help>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
30 .. class:: infomark
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
31
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
32 **TIP**
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
33
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
34 This tool designs primer pairs to flank features
5
b321e0517be3 Uploaded
ben-warren
parents: 1
diff changeset
35 Optionally it can predict reference and variant Tm using the uMelt web service provided by University of Utah
0
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
36
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
37 It takes
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
38
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
39 * an input reference sequence file
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
40 * a gff3 file containing feature information
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
41 * a single column file containing list of features
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
42
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
43 ----
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
44
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
45 **Example**
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
46
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
47 --input GFF
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
48
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
49 ::
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
50
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
51 PGSC0003DMB000000001 samtools SNP 6345 6346 4.84 . . ID=PGSC0003DMB000000001:SAMTOOLS:SNP:6345;Variant_seq=C;Reference_seq=T;Total_reads=2
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
52 PGSC0003DMB000000001 samtools SNP 6453 6454 18 . . ID=PGSC0003DMB000000001:SAMTOOLS:SNP:6453;Variant_seq=T;Reference_seq=G;Total_reads=8
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
53 PGSC0003DMB000000001 samtools SNP 7255 7256 149 . . ID=PGSC0003DMB000000001:SAMTOOLS:SNP:7255;Variant_seq=G;Reference_seq=T;Total_reads=14
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
54 PGSC0003DMB000000001 samtools SNP 7371 7372 86.8 . . ID=PGSC0003DMB000000001:SAMTOOLS:SNP:7371;Variant_seq=C;Reference_seq=T;Total_reads=9
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
55 PGSC0003DMB000000001 samtools SNP 8288 8289 10.7 . . ID=PGSC0003DMB000000001:SAMTOOLS:SNP:8288;Variant_seq=A;Reference_seq=G;Total_reads=5
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
56
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
57
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
58 --input features
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
59
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
60 ::
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
61
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
62 PGSC0003DMB000000001:SAMTOOLS:SNP:1012901
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
63 PGSC0003DMB000000001:SAMTOOLS:SNP:1021771
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
64 PGSC0003DMB000000001:SAMTOOLS:SNP:1025761
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
65 PGSC0003DMB000000001:SAMTOOLS:SNP:1026717
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
66 PGSC0003DMB000000001:SAMTOOLS:SNP:1026834
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
67 PGSC0003DMB000000001:SAMTOOLS:SNP:1029542
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
68
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
69
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
70 --output columnar data
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
71
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
72 ::
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
73
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
74 PGSC0003DMB000000001:SAMTOOLS:SNP:1012901 AGAGGTCGGCTCTCTAGTAGCA GGGGATCCACTAACTATGTCACTT 86
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
75 PGSC0003DMB000000001:SAMTOOLS:SNP:1021771 CCTATGCGAGAAAGGGACAC GCCCTTCCATGTTGTACGAG 100
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
76 PGSC0003DMB000000001:SAMTOOLS:SNP:1025761 TGTGAGTAACTTAGTGTCCTACGTCAA CACTCAATGAGCCAAAGCAA 92
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
77 PGSC0003DMB000000001:SAMTOOLS:SNP:1026717 TTCCTAAGTCATGGGAAAGCA AGTTCATCCAAGGCAAGCAT 76
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
78 PGSC0003DMB000000001:SAMTOOLS:SNP:1026834 AATGAAGTGACTGGGGAGGA TGCTGGTCGAAGCTTTCTTT 98
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
79 PGSC0003DMB000000001:SAMTOOLS:SNP:1029542 TAACCAGAAAGTCCGGATGG TTCTGAAGTCAAGTGGGGAGA 75
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
80
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
81 -----------------------
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
82
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
83 *If you use this tool please cite:*
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
84
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
85 A Toolkit For Bulk PCR-Based Marker Design From Next-Generation Sequence Data:
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
86 Application For Development Of A Framework Linkage Map In Bulb Onion (*Allium cepa* L.)
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
87 (2012)
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
88
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
89 Samantha Baldwin, Roopashree Revanna, Susan Thomson, Meeghan Pither-Joyce, Kathryn Wright,
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
90 Ross Crowhurst, Mark Fiers, Leshi Chen, Richard MacKnight, John A. McCallum
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
91
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
92 </help>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
93
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
94 </tool>