Coder Social home page Coder Social logo

Add Trimmomatic support about multiqc HOT 6 CLOSED

remiolsen avatar remiolsen commented on September 17, 2024
Add Trimmomatic support

from multiqc.

Comments (6)

ewels avatar ewels commented on September 17, 2024

Hey @remiolsen,

Do you have any example reports that you could send to me for this? Preferably ok to publish in the public test data repo, but you can just e-mail me private reports otherwise.

Phil

from multiqc.

ewels avatar ewels commented on September 17, 2024

No worries, found some..

from multiqc.

ewels avatar ewels commented on September 17, 2024

@remiolsen: I have log file output from Trimmomatic in paired end mode, but not single end. Do you have an example single end log file output?

from multiqc.

ewels avatar ewels commented on September 17, 2024

See example Trimmomatic command:

java -jar trimmomatic-0.35.jar \
    PE \
    -phred33 \
    input_forward.fq.gz \
    input_reverse.fq.gz \
    output_forward_paired.fq.gz \
    output_forward_unpaired.fq.gz \
    output_reverse_paired.fq.gz \
    output_reverse_unpaired.fq.gz \
    ILLUMINACLIP:TruSeq3-PE.fa:2:30:10 \
    LEADING:3 \
    TRAILING:3 \
    SLIDINGWINDOW:4:15 \
    MINLEN:36

Single end is similar:

java -jar trimmomatic-0.35.jar \
    SE \
    -phred33 \
    input.fq.gz \
    output.fq.gz \
    ILLUMINACLIP:TruSeq3-SE:2:30:10 \
    LEADING:3 \
    TRAILING:3 \
    SLIDINGWINDOW:4:15 \
    MINLEN:36

The stdErr output contains the command that has been run in the first line, so we can get s_name from the first fastq filename found.

from multiqc.

remiolsen avatar remiolsen commented on September 17, 2024

Makes sense. Sorry, I lost attention to this but I don't run this on single ends.

from multiqc.

ewels avatar ewels commented on September 17, 2024

No problem! Ok, written at last! 7th september... it's been a while coming :)

from multiqc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.