Mercurial > repos > iuc > seqtk
annotate seqtk_fqchk.xml @ 8:d3b46dec1f5e draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqtk commit e5a5ad091c621348dc6ce2df861475ebc54a380e
| author | iuc |
|---|---|
| date | Tue, 13 Oct 2015 17:27:35 -0400 |
| parents | 55e75a28fde7 |
| children | 16f2535c08bf |
| rev | line source |
|---|---|
| 0 | 1 <?xml version="1.0"?> |
| 2 <tool id="seqtk_fqchk" name="seqtk_fqchk" version="@WRAPPER_VERSION@.0"> | |
| 3 <description>fastq QC (base/quality summary)</description> | |
| 4 <macros> | |
| 5 <import>macros.xml</import> | |
| 6 </macros> | |
| 7 <expand macro="requirements"/> | |
| 8 <expand macro="stdio"/> | |
| 9 <command><![CDATA[seqtk fqchk | |
| 10 -q $q | |
| 11 $in_file | awk '{if(NR<4){print "#"$0}else{print $0}}' | |
| 12 > $default]]></command> | |
| 13 <inputs> | |
| 14 <expand macro="in_fq"/> | |
| 15 <param name="q" type="integer" value="20" label="quality values" help="use 0 to get the distribution of all quality values (-q)"/> | |
| 16 </inputs> | |
| 17 <outputs> | |
| 18 <data format="tabular" hidden="false" name="default" label="Quality information for $in_file.name"/> | |
| 19 </outputs> | |
| 20 <tests> | |
| 21 <test> | |
| 22 <param name="in_file" value="seqtk_fqchk.fq"/> | |
| 23 <output name="default" file="seqtk_fqchk.out" ftype="tabular"/> | |
| 24 </test> | |
| 25 </tests> | |
| 26 <help><![CDATA[ | |
| 27 **What it does** | |
| 28 | |
| 29 Returns quality score information base-by-base. | |
| 30 | |
| 31 :: | |
| 32 | |
| 33 @SEQ_ID1 | |
| 34 GATTTGGGGTTCAAAGCAGTATCGATCAAATAGTAAATCCATTTGTTCAACTCACAGTTT | |
| 35 + | |
| 36 !''*((((***+))%%%++)(%%%%).1***-+*''))**55CCF>>>>>>CCCCCCC65 | |
| 37 | |
| 38 each based is examined individually and information reported: | |
| 39 | |
| 40 :: | |
| 41 | |
| 42 #min_len: 60; max_len: 60; avg_len: 60.00; 15 distinct quality values | |
| 43 #POS #bases %A %C %G %T %N avgQ errQ %low %high | |
| 44 #ALL 60 31.7 16.7 18.3 33.3 0.0 15.1 8.7 66.7 33.3 | |
| 45 1 1 0.0 0.0 100.0 0.0 0.0 0.0 3.0 100.0 0.0 | |
| 46 2 1 100.0 0.0 0.0 0.0 0.0 6.0 6.0 100.0 0.0 | |
| 47 3 1 0.0 0.0 0.0 100.0 0.0 6.0 6.0 100.0 0.0 | |
| 48 4 1 0.0 0.0 0.0 100.0 0.0 9.0 9.0 100.0 0.0 | |
| 49 5 1 0.0 0.0 0.0 100.0 0.0 7.0 7.0 100.0 0.0 | |
| 50 6 1 0.0 0.0 100.0 0.0 0.0 7.0 7.0 100.0 0.0 | |
| 51 7 1 0.0 0.0 100.0 0.0 0.0 7.0 7.0 100.0 0.0 | |
| 52 8 1 0.0 0.0 100.0 0.0 0.0 7.0 7.0 100.0 0.0 | |
| 53 9 1 0.0 0.0 100.0 0.0 0.0 9.0 9.0 100.0 0.0 | |
| 54 10 1 0.0 0.0 0.0 100.0 0.0 9.0 9.0 100.0 0.0 | |
| 55 | |
| 56 @ATTRIBUTION@ | |
| 57 ]]></help> | |
|
7
55e75a28fde7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqtk commit 344140b8df53b8b7024618bb04594607a045c03a
iuc
parents:
0
diff
changeset
|
58 <expand macro="citation" /> |
| 0 | 59 </tool> |
