Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Downloading multiple SRA runs

    Hello, I'm having some difficulties downloading multiple runs from an experiment in SRA. I don't want *all* the runs, or all the data from the experiment. I just want a selection I can give myself. I've googled about, and tried the idea of saving the selected runs to a cvs file by file>summary. and then running this command:
    sed 1d sra_result.csv | cut -f14 | wget -i-

    after observing the error of no URL, I checked the csv file summary, thinking I got the wrong column. Opening the csv file showed the runs, and the 14th entry was indeed the URL, but the entire file was not separating properly. I then added the separator to the beginning of the file:
    sep=","
    That still didn't work. It seems a novice problem, has anyone had it and/or know how to solve it?

    I know of aspera, but that also seemed to be single files from the download guide example:
    [email protected]:2...96072.lite.sra

    (I do have aspera installed) What I've tried is downloading a directory, so something like:
    [email protected]:22/sra/sra-instant/reads/ByRun/litesra/SRR/SRR096
    and also (maybe silly but getting desperate) tried this
    [email protected]:22/sra/sra-instant/reads/ByRun/litesra/SRR/SRR096/SRR096072-SRR096075
    trying to use their download example for my own purposes..

  • #2
    Try this:

    Code:
    wget -r -nd -nH ftp://ftp-trace.ncbi.nlm.nih.gov/sra/sra-instant/reads//ByRun/litesra/SRR/SRR096
    This will get all accessions # in the SRR096 directory.

    Comment


    • #3
      Hi,

      The Code suggested by GenoMax is very useful. I'm just providing a modification of the code:

      Store the SRR096001-SRR096999 #s that would want to download in a file:
      for example:
      cat > SRR_2_download
      SRR096023
      SRR096072
      SRR096074

      for i in $(cat SRR_2_download);do wget -r -nd -nH ftp://ftp-trace.ncbi.nlm.nih.gov/sra/sra-instant/reads/ByRun/litesra/SRR/SRR096/$i/*; done

      This will download the specific SRA files that are listed in the file SRR_2_download

      Thanks
      --
      Muthu

      Comment

      Latest Articles

      Collapse

      • seqadmin
        Current Approaches to Protein Sequencing
        by seqadmin


        Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
        04-04-2024, 04:25 PM
      • seqadmin
        Strategies for Sequencing Challenging Samples
        by seqadmin


        Despite advancements in sequencing platforms and related sample preparation technologies, certain sample types continue to present significant challenges that can compromise sequencing results. Pedro Echave, Senior Manager of the Global Business Segment at Revvity, explained that the success of a sequencing experiment ultimately depends on the amount and integrity of the nucleic acid template (RNA or DNA) obtained from a sample. “The better the quality of the nucleic acid isolated...
        03-22-2024, 06:39 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, 04-11-2024, 12:08 PM
      0 responses
      30 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 10:19 PM
      0 responses
      32 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 09:21 AM
      0 responses
      28 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-04-2024, 09:00 AM
      0 responses
      52 views
      0 likes
      Last Post seqadmin  
      Working...
      X