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