annotate find_CAPS.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="CAPS_Marker_Design_2" name="CAPS Detection">
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
3 <description>identify SNPs that condition restriction polymorphisms</description>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
4 <command interpreter="python">find_CAPS.py $inputFasta $inputSNPGff3File > $outputfile</command>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
5 <inputs>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
6 <param format="gff3" name="inputSNPGff3File" type="data" label="GFF3 file containing SNP data"/>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
7 <param format="fasta" name="inputFasta" type="data" label="fasta source file" />
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
8 </inputs>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
9 <outputs>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
10 <data format="interval" name="outputfile" />
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
11 </outputs>
5
b321e0517be3 Uploaded
ben-warren
parents: 0
diff changeset
12 <tests>
b321e0517be3 Uploaded
ben-warren
parents: 0
diff changeset
13 <test>
b321e0517be3 Uploaded
ben-warren
parents: 0
diff changeset
14 <param name="inputSNPGff3File" value="targets.gff" ftype="gff3"/>
b321e0517be3 Uploaded
ben-warren
parents: 0
diff changeset
15 <param name="inputFasta" value="targets.fasta" ftype="fasta"/>
b321e0517be3 Uploaded
ben-warren
parents: 0
diff changeset
16 <output name="outputfile" file="find_caps_output.txt"/>
b321e0517be3 Uploaded
ben-warren
parents: 0
diff changeset
17 </test>
b321e0517be3 Uploaded
ben-warren
parents: 0
diff changeset
18 </tests>
0
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
19 <help>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
20 .. class:: infomark
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
21
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
22 **TIP**
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
23
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
24 This tool identifies SNPs that condition restriction polymorphisms.
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
25
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
26 Currently it utilizes a fixed list of robust enzymes known to work well in PCR buffers
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
27
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
28 AluI,ApaI,BamHI,BbrPI,BfrI,ClaI,DpnI,DraI,EcoRI,HaeIII,HindII,HinfI,HpaI,PvuII,RsaI,SacI,Sau3AI,SmaI,TaqI
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
29
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
30 It produces a tabular output in interval format
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 record ID, start, stop, feature ID,enzyme, phase (ie whether it cuts reference or variant sequence)
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
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
35
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
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
38 **Example**
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
39
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
40
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
41
5
b321e0517be3 Uploaded
ben-warren
parents: 0
diff changeset
42 *input GFF3*
0
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
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
46 JR843866 gsmapper SNP 63 63 . . . ID=JR843866:gsmapperSNP:63;Reference_seq=T;Variant_seq=C;Total_reads=22;Variant_reads=20
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
47 JR843866 gsmapper SNP 146 146 . . . ID=JR843866:gsmapperSNP:146;Reference_seq=T;Variant_seq=C;Total_reads=26;Variant_reads=10
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
48 JR843866 gsmapper SNP 258 258 . . . ID=JR843866:gsmapperSNP:258;Reference_seq=T;Variant_seq=G;Total_reads=4;Variant_reads=3
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
49 JR848320 gsmapper SNP 157 157 . . . ID=JR848320:gsmapperSNP:157;Reference_seq=C;Variant_seq=T;Total_reads=10;Variant_reads=10
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
50 JR848554 gsmapper SNP 54 54 . . . ID=JR848554:gsmapperSNP:54;Reference_seq=T;Variant_seq=G;Total_reads=5;Variant_reads=5
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
51 JR848554 gsmapper SNP 74 74 . . . ID=JR848554:gsmapperSNP:74;Reference_seq=C;Variant_seq=T;Total_reads=7;Variant_reads=7
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
52 JR848554 gsmapper SNP 123 123 . . . ID=JR848554:gsmapperSNP:123;Reference_seq=T;Variant_seq=A;Total_reads=11;Variant_reads=11
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
53 JR848554 gsmapper SNP 147 147 . . . ID=JR848554:gsmapperSNP:147;Reference_seq=T;Variant_seq=C;Total_reads=13;Variant_reads=13
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
54 JR848554 gsmapper SNP 161 161 . . . ID=JR848554:gsmapperSNP:161;Reference_seq=C;Variant_seq=T;Total_reads=13;Variant_reads=13
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
55
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 *output columnar data*
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 JR843866 63 64 JR843866:gsmapperSNP:63 HaeIII variant
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
63 JR848320 157 158 JR848320:gsmapperSNP:157 TaqI variant
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
64 JR848320 157 158 JR848320:gsmapperSNP:157 HinfI variant
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
65 JR848554 162 163 JR848554:gsmapperSNP:162 TaqI variant
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
66 JR848554 162 163 JR848554:gsmapperSNP:162 ClaI variant
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
67 JR848554 306 307 JR848554:gsmapperSNP:306 TaqI variant
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
68 JR848554 652 653 JR848554:gsmapperSNP:652 TaqI variant
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
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 *If you use this tool please cite:*
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
75
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
76 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
77 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
78 (2012)
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
79
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
80 Samantha Baldwin, Roopashree Revanna, Susan Thomson, Meeghan Pither-Joyce, Kathryn Wright,
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
81 Ross Crowhurst, Mark Fiers, Leshi Chen, Richard MacKnight, John A. McCallum
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
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
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
86
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
87 </help>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
88 </tool>