Mercurial > repos > mandorodriguez > fastqdump_paired
comparison fastq_dump_paired.xml @ 8:daebdda744fc draft
Uploaded
author | mandorodriguez |
---|---|
date | Thu, 10 Mar 2016 12:23:29 -0500 |
parents | dbee556cf940 |
children | f21bcc7ffacf |
comparison
equal
deleted
inserted
replaced
7:dbee556cf940 | 8:daebdda744fc |
---|---|
1 <tool id="fastq_dump_paired" name="FASTQ Dump paired downloader" version="1.1.3"> | 1 <tool id="fastq_dump_paired" name="FASTQ Dump paired downloader" version="1.1.4"> |
2 <description>Downloads a set of paired reads by their accession number using fastq-dump tool from sra-toolkit.</description> | 2 <description>Downloads a set of paired reads by their accession number using fastq-dump tool from sra-toolkit.</description> |
3 <requirements> | 3 <requirements> |
4 <!-- Should just use the samtools that's installed in the path --> | 4 <!-- Should just use the samtools that's installed in the path --> |
5 <requirement type="binary">fastq-dump</requirement> | 5 <requirement type="binary">fastq-dump</requirement> |
6 </requirements> | 6 </requirements> |
10 ## ! We only have a simple single command here. | 10 ## ! We only have a simple single command here. |
11 fastq-dump --log-level fatal --split-3 --accession ${accession_number} --ncbi_error_report never; | 11 fastq-dump --log-level fatal --split-3 --accession ${accession_number} --ncbi_error_report never; |
12 ls -lh | grep ${accession_number}; | 12 ls -lh | grep ${accession_number}; |
13 mv -v ${accession_number}_1.fastq R1.fastq; | 13 mv -v ${accession_number}_1.fastq R1.fastq; |
14 mv -v ${accession_number}_2.fastq R2.fastq; | 14 mv -v ${accession_number}_2.fastq R2.fastq; |
15 echo "Deleting any stored files in ~/ncbi"; | |
16 rm -rf ~/ncbi/* | |
15 </command> | 17 </command> |
16 <inputs> | 18 <inputs> |
17 <param name="accession_number" size="10" type="text" value="" label="Accession Number"/> | 19 <param name="accession_number" size="10" type="text" value="" label="Accession Number"/> |
18 </inputs> | 20 </inputs> |
19 <outputs> | 21 <outputs> |