Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • 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!

  • #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
      Recent Innovations in Spatial Biology
      by seqadmin


      Spatial biology is an exciting field that encompasses a wide range of techniques and technologies aimed at mapping the organization and interactions of various biomolecules in their native environments. As this area of research progresses, new tools and methodologies are being introduced, accompanied by efforts to establish benchmarking standards and drive technological innovation.

      3D Genomics
      While spatial biology often involves studying proteins and RNAs in their...
      Yesterday, 07:30 PM
    • seqadmin
      Advancing Precision Medicine for Rare Diseases in Children
      by seqadmin




      Many organizations study rare diseases, but few have a mission as impactful as Rady Children’s Institute for Genomic Medicine (RCIGM). “We are all about changing outcomes for children,” explained Dr. Stephen Kingsmore, President and CEO of the group. The institute’s initial goal was to provide rapid diagnoses for critically ill children and shorten their diagnostic odyssey, a term used to describe the long and arduous process it takes patients to obtain an accurate...
      12-16-2024, 07:57 AM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, 12-30-2024, 01:35 PM
    0 responses
    21 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 12-17-2024, 10:28 AM
    0 responses
    41 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 12-13-2024, 08:24 AM
    0 responses
    55 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 12-12-2024, 07:41 AM
    0 responses
    40 views
    0 likes
    Last Post seqadmin  
    Working...
    X