annotate bamToFastq.xml @ 0:4fb5ea02b441 draft

Uploaded
author iuc
date Tue, 15 Jul 2014 14:42:23 -0400
parents
children 7511823bdea1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
1 <tool id="bedtools_bamtofastq" name="Convert from BAM to FastQ" version="@WRAPPER_VERSION@.0">
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
2 <description></description>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
3 <macros>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
4 <import>macros.xml</import>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
5 </macros>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
6 <expand macro="requirements" />
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
7 <expand macro="stdio" />
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
8 <command>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
9 bedtools bamtofastq
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
10 $tags
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
11 $fq2
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
12 -i '$input'
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
13 -fq '$output'
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
14 </command>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
15 <inputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
16 <param format="bam" name="input" type="data" label="Convert the following BAM file to FASTQ"/>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
17 <param name="tags" type="boolean" truevalue="-tags" falsevalue="" selected="False" label="Create FASTQ based on the mate info in the BAM R2 and Q2 tags."/>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
18 <param name="fq2" type="boolean" truevalue="-fq2" falsevalue="" selected="False" label="ASTQ for second end. Used if BAM contains paired-end data. BAM should be sorted by query name if creating paired FASTQ with this option."/>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
19 </inputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
20 <outputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
21 <data format="fastq" name="output" metadata_source="input" label="${input.name} (as FASTQ)"/>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
22 </outputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
23 <help>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
24
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
25 **What it does**
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
26
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
27 bedtools bamtofastq is a conversion utility for extracting FASTQ records from sequence alignments in BAM format.
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
28
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
29 @REFERENCES@
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
30
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
31 </help>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
32 </tool>