Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Removing :Y: flagged reads

    Hi,
    what is the best (i.e. quickest) tool to remove :Y: flagged reads from illumina data?

    So far I used a perl script which is not very memory effective and I'd like to speed up this step.

  • #2
    You could do it in Python (code at the bottom). It takes one argument, the path to the fastq file to process.

    Since python only stores one line in memory at once with this implementation, it should be pretty efficient. You can save time by piping the output of this file directly to the downstream program, using a line like this:
    Code:
    readmapper <(/path/to/removebadreads.py /path/to/reads.fastq)
    This will call program 'readmapper' and pass it the output from the python script below as it runs, so you don't need to waste time and disc space making a huge output file. Modify as required for whatever program you want to run yourself.

    Also, this program won't work with gzipped fastq files, but you can use the same piping concept to call gunzip and pass unzipped output straight to the script:
    Code:
    ./removebadreads.py <(gunzip -c /path/to/reads.fastq.gz)
    You can even pipe the gunzip output to removebadreads.py and then pipe the output from that to your read mapper, all at once with no temporary files or delays! Linux is fun!
    Code:
    readmapper <(/path/to/removebadreads.py <(gunzip -c /path/to/reads.fastq.gz))
    Python code:
    Code:
    #!/usr/bin/python
    import sys
    
    try:
    	f = open(sys.argv[1])
    except:
    	exit('Supply an input file!')
    
    linecounter = 0
    goodread = False
    for line in f:
    	linecounter = 1 if linecounter == 4 else linecounter+1
    	if linecounter == 1:
    		if ':N:' in line:
    			goodread = True
    			print line,
    		else:
    			goodread = False
    	elif goodread:
    		print line,

    Comment


    • #3
      I always used zgrep. It did put '--' between the entries, but you can get rid of that, and it didn't seem to interfere with most programs anyway.

      Comment


      • #4
        Here's a Perl script that's quick and efficient (courtesy of James Platt):

        Code:
        #!/usr/bin perl
        
        use warnings;
        
        # usage: perl Illumina_fastq_filter-JP.pl filename > outname
        my $n = 0; #line counter
        
        open (FILENAME, "$ARGV[0]") or die "Can't find $ARGV[0]\n";
        
        while (<FILENAME>) {
        	chomp;
        
        	if ($_ =~ /^@\S+\s\d\:N/) {
        		$n = 4;
        	}
        
        	if ($n > 0) {
        		print "$_\n";
        		$n--;
        	}
        }
        
        close FILENAME;

        Comment

        Latest Articles

        Collapse

        • seqadmin
          Essential Discoveries and Tools in Epitranscriptomics
          by seqadmin


          The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist on Modified Bases...
          Yesterday, 07:01 AM
        • 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

        ad_right_rmr

        Collapse

        News

        Collapse

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