annotate GVF_Features_Extracter.xml @ 1:a0689dc29b7f draft

Updated vcf to gff conversion tool
author john-mccallum
date Tue, 31 Jul 2012 00:33:11 -0400
parents 21053f7f9ed1
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="GVF Features Extracter_1" name="GVF Feature ID Extracter">
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
3 <description>Extract unique feature IDs from a GVF/GFF3 file </description>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
4 <command >awk '!/^#/ {print $1":"$2":"$3":"$4}' $inputgff3File | sort | uniq > $column_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="inputgff3File" type="data" label="GVF/Gff3 File"/>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
7 </inputs>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
8 <outputs>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
9 <data format="tabular" name="column_outputfile" />
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
10 </outputs>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
11 <help>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
12
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
13 .. class:: infomark
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
14
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
15 **TIP**
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
16
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
17 This tool extracts a unique feature identifier from GVF/GFF3 format, primarily to enable downstream analysis of SNPs or marker design
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
18
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
19
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
20 ----
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 **Example**
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 *input GFF3*
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 ::
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 ##gff-version 3
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
29 1119927 gsMapper SNP 434 434 . . . ID=1119927:gsMapper:SNP:434;Reference_seq=G;Variant_seq=A;Total_reads=10;Variant_freq=100;Enzyme=AluI;Phase=variant
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
30 1120709 gsMapper SNP 361 361 . . . ID=1120709:gsMapper:SNP:361;Reference_seq=T;Variant_seq=C;Total_reads=22;Variant_freq=68;Enzyme=TaqI;Phase=variant
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
31 1120709 gsMapper SNP 704 704 . . . ID=1120709:gsMapper:SNP:704;Reference_seq=A;Variant_seq=G;Total_reads=20;Variant_freq=90;Enzyme=RsaI;Phase=variant
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
32
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
33 *output tabular text*
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 1119927:gsMapper:SNP:434
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
38 1120709:gsMapper:SNP:361
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
39 1120709:gsMapper:SNP:704
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 -----------------------------------------------------
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 *If you use this tool please cite:*
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 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
46 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
47 (2012)
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 Samantha Baldwin, Roopashree Revanna, Susan Thomson, Meeghan Pither-Joyce, Kathryn Wright,
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
50 Ross Crowhurst, Mark Fiers, Leshi Chen, Richard MacKnight, John A. McCallum
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
51
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
52 </help>
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
53
21053f7f9ed1 First upload of PCR Marker tools
john-mccallum
parents:
diff changeset
54 </tool>