Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Mira assembly -shell script

    hello,

    I'm a beginner in Assembly and shell scripting. My question is I already have pair-end reads generated using solexa. and on the MIRA documentation about mira input file processing (processing to make /1/2 illumina naming scheme), there is a shell script called prepdata.sh .

    but my two reads are not form NCBI website;they're already unziped, so how can i modify the script to just work for an already unzipped file???

    thanks,
    R

  • #2
    I'm not familar with this, but is this the script in question? (from http://mira-assembler.sourceforge.ne...deToMIRA.html):

    Code:
    ######################################################################
    #######
    ####### Prepare paired-end Solexa downloaded from NCBI
    #######
    ######################################################################
    
    # srrname:    is the SRR name as downloaded form NCBI SRA
    # numreads:   maximum number of forward (and reverse) reads to take from
    #              each file. Just to avoid bacterial projects with a coverage
    #              of 200 or so.
    # strainname: name of the strain which was re-sequenced
    
    srrname="SRR030257"
    numreads=5000000
    strainname="REL8593A"
    
    ################################
    
    numlines=$((4*${numreads}))
    
    # put "/1" Solexa reads into file
    echo "Copying ${numreads} reads from _1 (forward reads)"
    zcat ../origdata/${srrname}_1.fastq.gz | head -${numlines} | sed -e 's/SRR[0-9.]*/&\/1/' >${strainname}-${numreads}_in.solexa.fastq
    
    # put "/2" Solexa reads into file
    echo "Copying ${numreads} reads from _2 (reverse reads)"
    zcat ../origdata/${srrname}_2.fastq.gz | head -${numlines} | sed -e 's/SRR[0-9.]*/&\/2/' >>${strainname}-${numreads}_in.solexa.fastq
    
    # make file with strainnames
    echo "Creating file with strain names for copied reads (this may take a while)."
    grep "@SRR" ${strainname}-${numreads}_in.solexa.fastq | cut -f 1 -d ' ' | sed -e 's/@//' -e "s/$/ ${strainname}/" >>${strainname}-${numreads}_straindata_in.txt
    If so, then it should probably just be a matter of changing the "zcat" commands to "cat" (aswell as changing the appropriate file names of course, e.g. it shouldn't say ".gz"). I haven't tried this or anything but it should work. "zcat" is for printing gzipped files to screen, cat is for normal, non-zipped files.

    Comment


    • #3
      gaffa,

      Thanks, that's what I thought and tried, but it's i'm getting a 'No such file ..' error . May be I misplaced the reads directory.

      now I know the command is correct.

      thanks
      Robel

      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
      26 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 10:19 PM
      0 responses
      29 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 09:21 AM
      0 responses
      25 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