Seqanswers Leaderboard Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • arkal
    advancing one byte at a time!
    • Jun 2011
    • 56

    FASTQC help

    I'm not a java programmer so I need some help doing something I hope there's someone here who can assist!

    According to the fastqc documentation, for calculating duplication levels it considers only the first 200,000 reads (to be memory efficient).... Memory is not an issue for me. I want a comprehensive output on my seq duplication level. Can anyone help me in modifying the module which does the above said task to accept and process all reads?

    Reason: I want to compare the results to those from picard's ELC.

    Warning: Is FASTQC open source? Can it be modified without permission? It's GPL v3 released so i think it can be modified openly

    Thanks in advance!
  • simonandrews
    Simon Andrews
    • May 2009
    • 870

    #2
    Originally posted by arkal View Post
    I'm not a java programmer so I need some help doing something I hope there's someone here who can assist!

    According to the fastqc documentation, for calculating duplication levels it considers only the first 200,000 reads (to be memory efficient).... Memory is not an issue for me. I want a comprehensive output on my seq duplication level. Can anyone help me in modifying the module which does the above said task to accept and process all reads?
    If you want to change this limit the value you need to change would be the line:

    Code:
    private final int OBSERVATION_CUTOFF = 200000;
    ..in OverRepresentedSequences.java. Or you could just remove the check all together by deleting the later lines:

    Code:
    if (uniqueSequenceCount == OBSERVATION_CUTOFF) {
      frozen = true;
    }
    You'll probably also need to change the default memory allocation in the launcher since you'll probably run out of memory in the 250MB allocation which is provided by default (edit the fastqc wrapper and increase the 250 to a much larger number).


    Originally posted by arkal View Post
    Reason: I want to compare the results to those from picard's ELC.
    Even with these changes you probably won't get the same answer as ELC as they're not measuring the same thing. The headline value in FastQC is the percentage of sequences which are not unique, which isn't quite the same thing as the percentage of different sequences. I'd prefer to have the latter value in FastQC but inferring that from the sample which we take has proved to be tricky (though I think we now know how to do this for a future release).

    Originally posted by arkal View Post
    Warning: Is FASTQC open source? Can it be modified without permission? It's GPL v3 released so i think it can be modified openly
    Yes, FastQC is open source and you can modify it for your own uses with no restrictions at all. The only restriction from the GPL is that if you distribute a modified version of the program you need to release the source for that under GPLv3 as well.

    Hope this helps

    Simon.

    Comment

    Latest Articles

    Collapse

    • seqadmin
      Pathogen Surveillance with Advanced Genomic Tools
      by seqadmin




      The COVID-19 pandemic highlighted the need for proactive pathogen surveillance systems. As ongoing threats like avian influenza and newly emerging infections continue to pose risks, researchers are working to improve how quickly and accurately pathogens can be identified and tracked. In a recent SEQanswers webinar, two experts discussed how next-generation sequencing (NGS) and machine learning are shaping efforts to monitor viral variation and trace the origins of infectious...
      03-24-2025, 11:48 AM
    • seqadmin
      New Genomics Tools and Methods Shared at AGBT 2025
      by seqadmin


      This year’s Advances in Genome Biology and Technology (AGBT) General Meeting commemorated the 25th anniversary of the event at its original venue on Marco Island, Florida. While this year’s event didn’t include high-profile musical performances, the industry announcements and cutting-edge research still drew the attention of leading scientists.

      The Headliner
      The biggest announcement was Roche stepping back into the sequencing platform market. In the years since...
      03-03-2025, 01:39 PM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, 03-20-2025, 05:03 AM
    0 responses
    49 views
    0 reactions
    Last Post seqadmin  
    Started by seqadmin, 03-19-2025, 07:27 AM
    0 responses
    57 views
    0 reactions
    Last Post seqadmin  
    Started by seqadmin, 03-18-2025, 12:50 PM
    0 responses
    50 views
    0 reactions
    Last Post seqadmin  
    Started by seqadmin, 03-03-2025, 01:15 PM
    0 responses
    201 views
    0 reactions
    Last Post seqadmin  
    Working...