Changes between Version 7 and Version 8 of SOPs/qc_SRA
- Timestamp:
- 08/26/20 08:54:09 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/qc_SRA
v7 v8 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 files. Using this direct path to the SRA file, 55 {{{ 56 # Use 'wget' for download 57 wget -O SRR123456.sra https://sra-downloadb/path_to_file/SRR123456/SRR123456.1 58 # Convert SRA to fastq.gz 59 fastq-dump --split-3 --gzip ./SRR123456.sra 60 }}} 61 54 62 === Downloading and processing multiple NCBI SRA samples === 55 63