Changes between Version 8 and Version 9 of SOPs/qc_SRA
- Timestamp:
- 08/26/20 08:57:31 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/qc_SRA
v8 v9 52 52 }}} 53 53 54 In the event of problems downloading and converting to fastq.gz all at once, SRA files can be downloaded by navigating through the SRA web site to the sample's "Data access" tab, which provides direct links to the file s. Using this direct path to the SRA file,54 In the event of problems downloading and converting to fastq.gz all at once, SRA files can be downloaded by navigating through the SRA web site to the sample's "Data access" tab, which provides direct links to the file(s). Using this direct path to the SRA file, 55 55 {{{ 56 # Use 'wget' for download 56 # Use 'wget' for download reads in SRA format 57 57 wget -O SRR123456.sra https://sra-downloadb/path_to_file/SRR123456/SRR123456.1 58 # Convert SRA to fastq.gz58 # Convert SRA format to fastq.gz 59 59 fastq-dump --split-3 --gzip ./SRR123456.sra 60 60 }}}