# HG changeset patch # User mandorodriguez # Date 1443459190 14400 # Node ID 4a455773d23523551dcab441bb7a20666c7c677b Uploaded diff -r 000000000000 -r 4a455773d235 fastq_dump_paired.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fastq_dump_paired.xml Mon Sep 28 12:53:10 2015 -0400 @@ -0,0 +1,51 @@ + + Downloads a set of paired reads by their accession number using fastq-dump tool from sra-toolkit. + + + fastq-dump + + +## The command is a Cheetah template which allows some Python based syntax. +## Lines starting hash hash are comments. Galaxy will turn newlines into spaces +## ! We only have a simple single command here. +fastq-dump --log-level fatal --split-3 --accession ${accession_number}; +ls -lh | grep ${accession_number}; +mv -v ${accession_number}_1.fastq R1.fastq; +mv -v ${accession_number}_2.fastq R2.fastq; + + + + + + + + + + + + + + + + + +.. class:: infomark + +**What it does** + +Performs a fastq-dump with the split-3 option. + +:: + + fastq-dump --log-level fatal --split-3 --accession accession_number + +------ + +.. class:: infomark + +**Tool Author** + +Mando Rodriguez + + + \ No newline at end of file