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
        Advanced Tools Transforming the Field of Cytogenomics
        by seqadmin


        At the intersection of cytogenetics and genomics lies the exciting field of cytogenomics. It focuses on studying chromosomes at a molecular scale, involving techniques that analyze either the whole genome or particular DNA sequences to examine variations in structure and behavior at the chromosomal or subchromosomal level. By integrating cytogenetic techniques with genomic analysis, researchers can effectively investigate chromosomal abnormalities related to diseases, particularly...
        09-26-2023, 06:26 AM
      • seqadmin
        How RNA-Seq is Transforming Cancer Studies
        by seqadmin



        Cancer research has been transformed through numerous molecular techniques, with RNA sequencing (RNA-seq) playing a crucial role in understanding the complexity of the disease. Maša Ivin, Ph.D., Scientific Writer at Lexogen, and Yvonne Goepel Ph.D., Product Manager at Lexogen, remarked that “The high-throughput nature of RNA-seq allows for rapid profiling and deep exploration of the transcriptome.” They emphasized its indispensable role in cancer research, aiding in biomarker...
        09-07-2023, 11:15 PM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, Yesterday, 07:14 AM
      0 responses
      11 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 09-29-2023, 09:38 AM
      0 responses
      13 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 09-27-2023, 06:57 AM
      0 responses
      14 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 09-26-2023, 07:53 AM
      0 responses
      31 views
      0 likes
      Last Post seqadmin  
      Working...
      X