Mercurial > repos > devteam > samtools_idxstats
annotate samtools_idxstats.xml @ 2:04d5581db1f5 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 70b38ebad0d0936f102e3e7cb70f1060347ea8c4
| author | iuc |
|---|---|
| date | Thu, 27 Sep 2018 09:03:08 -0400 |
| parents | 88b8c2916784 |
| children | 811fc2d75ad4 |
| rev | line source |
|---|---|
|
2
04d5581db1f5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 70b38ebad0d0936f102e3e7cb70f1060347ea8c4
iuc
parents:
1
diff
changeset
|
1 <tool id="samtools_idxstats" name="Samtools idxstats" version="2.0.2"> |
|
1
88b8c2916784
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
0
diff
changeset
|
2 <description>reports stats of the BAM index file</description> |
| 0 | 3 <macros> |
|
1
88b8c2916784
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
0
diff
changeset
|
4 <import>macros.xml</import> |
| 0 | 5 </macros> |
|
1
88b8c2916784
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
0
diff
changeset
|
6 <expand macro="requirements"/> |
|
88b8c2916784
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
0
diff
changeset
|
7 <expand macro="stdio"/> |
|
88b8c2916784
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
0
diff
changeset
|
8 <expand macro="version_command"/> |
| 0 | 9 <command><![CDATA[ |
|
2
04d5581db1f5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 70b38ebad0d0936f102e3e7cb70f1060347ea8c4
iuc
parents:
1
diff
changeset
|
10 @PREPARE_IDX@ |
|
04d5581db1f5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 70b38ebad0d0936f102e3e7cb70f1060347ea8c4
iuc
parents:
1
diff
changeset
|
11 samtools idxstats infile > '${output}' |
|
1
88b8c2916784
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
0
diff
changeset
|
12 ]]></command> |
| 0 | 13 <inputs> |
|
2
04d5581db1f5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 70b38ebad0d0936f102e3e7cb70f1060347ea8c4
iuc
parents:
1
diff
changeset
|
14 <param name="input" type="data" format="bam,cram" label="BAM file" /> |
| 0 | 15 </inputs> |
| 16 <outputs> | |
| 17 <data format="tabular" name="output" label="${tool.name} on ${on_string}" /> | |
| 18 </outputs> | |
| 19 <tests> | |
|
2
04d5581db1f5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 70b38ebad0d0936f102e3e7cb70f1060347ea8c4
iuc
parents:
1
diff
changeset
|
20 <!-- test from https://github.com/samtools/samtools/blob/9ce8c64493f7ea3fa69bc5c1ac980b1a8e3dcf1f/test/test.pl#L2556 --> |
| 0 | 21 <test> |
|
2
04d5581db1f5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 70b38ebad0d0936f102e3e7cb70f1060347ea8c4
iuc
parents:
1
diff
changeset
|
22 <param name="input" value="test_input_1_a.bam" ftype="bam" /> |
|
04d5581db1f5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 70b38ebad0d0936f102e3e7cb70f1060347ea8c4
iuc
parents:
1
diff
changeset
|
23 <output name="output" file="test_input_1_a.bam.expected" compare="diff" ftype="tabular" /> |
|
04d5581db1f5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 70b38ebad0d0936f102e3e7cb70f1060347ea8c4
iuc
parents:
1
diff
changeset
|
24 </test> |
|
04d5581db1f5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 70b38ebad0d0936f102e3e7cb70f1060347ea8c4
iuc
parents:
1
diff
changeset
|
25 <!-- test from original tool --> |
|
04d5581db1f5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 70b38ebad0d0936f102e3e7cb70f1060347ea8c4
iuc
parents:
1
diff
changeset
|
26 <test> |
| 0 | 27 <param name="input" value="phiX.bam" ftype="bam" /> |
| 28 <output name="output" file="samtools_idxstats_out.tabular" compare="diff" ftype="tabular" /> | |
| 29 </test> | |
| 30 </tests> | |
|
1
88b8c2916784
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
0
diff
changeset
|
31 <help><![CDATA[ |
| 0 | 32 **What it does** |
| 33 | |
| 34 Runs the ``samtools idxstats`` command. It retrieves and prints stats in the index file. | |
| 35 | |
| 36 Input is a sorted and indexed BAM file, the output is tabular with | |
| 37 four columns (one row per reference sequence plus a final line for | |
| 38 unmapped reads):: | |
| 39 | |
| 40 Column Description | |
| 41 ------ ----------------------------- | |
| 42 1 Reference sequence identifier | |
| 43 2 Reference sequence length | |
| 44 3 Number of mapped reads | |
| 45 4 Number of placed but unmapped reads | |
| 46 (typically unmapped partners of mapped reads) | |
| 47 | |
| 48 ------ | |
| 49 | |
| 50 **Example** output from a *de novo* assembly:: | |
| 51 | |
| 52 contig_1 170035 98397 0 | |
| 53 contig_2 403835 199564 0 | |
| 54 contig_3 553102 288189 0 | |
| 55 ... ... ... ... | |
| 56 contig_603 653 50 0 | |
| 57 contig_604 214 6 0 | |
| 58 \* 0 0 50320 | |
| 59 | |
| 60 In this example there were 604 contigs, each with one line in the output table, | |
| 61 plus the final row (labelled with an asterisk) representing 50320 unmapped reads. | |
| 62 In this BAM file, the final column was otherwise zero. | |
| 63 | |
| 64 ------ | |
| 65 | |
| 66 Peter J.A. Cock (2013), `Galaxy wrapper <https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats>`_ for the samtools idxstats command | |
|
1
88b8c2916784
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
0
diff
changeset
|
67 ]]></help> |
|
88b8c2916784
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_idxstats commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
0
diff
changeset
|
68 <expand macro="citations"/> |
| 0 | 69 </tool> |
