annotate fastq_dump.xml @ 2:5b83155a24f4 draft

Using proper accession string for read deflines.
author Matthew Shirley <mdshw5@gmail.com>
date Tue, 13 Nov 2012 12:02:29 -0500
parents 4c06e5b58662
children f6bc4bdbd528
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
1 <tool id="fastq_dump" name="Extract fastq from SRA" version="1.0.0">
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
2 <description>Extract fastq format reads from SRA data archive.</description>
2
5b83155a24f4 Using proper accession string for read deflines.
Matthew Shirley <mdshw5@gmail.com>
parents: 1
diff changeset
3 <command>fastq-dump --accession ${input.name} --stdout $split $aligned $input > $output </command>
0
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
4 <version_string>fastq-dump --version</version_string>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
5 <inputs>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
6 <param format="sra" name="input" type="data" label="sra archive"/>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
7 <param format="text" name="split" type="select" value="">
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
8 <label>Split read pairs</label>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
9 <option value="">No</option>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
10 <option value="--split-spot">Yes</option>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
11 </param>
1
4c06e5b58662 Fixed typo in select statement.
Matthew Shirley <mdshw5@gmail.com>
parents: 0
diff changeset
12 <param format="text" name="aligned" type="select" value="">
0
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
13 <label>Specify alignment</label>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
14 <option value="">All</option>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
15 <option value="--aligned">Only aligned</option>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
16 <option value="--unaligned">Only unaligned</option>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
17 </param>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
18 </inputs>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
19 <outputs>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
20 <data format="fastqsanger" name="output"/>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
21 </outputs>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
22 <help>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
23 This tool extracts fastqsanger reads from SRA archives using fastq-dump. The fastq-dump program is developed at NCBI, and is available at: http://www.ncbi.nlm.nih.gov/Traces/sra/sra.cgi?view=software.
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
24 </help>
ba892201bdad Wrote a wrapper for NCBI fastq-dump. Initial version.
Matthew Shirley <mdshw5@gmail.com>
parents:
diff changeset
25 </tool>