Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Struggling with quality trimming

    Hello everybody,

    this is my first try to trim Illumina (paired-end) reads on the unix command line.
    If i get it correctly, de-multiplexing was already done by the sequencing service.
    I guess this also means that the adapters are also gone already.

    What i want to do is trimming the reads by quality.
    I checked it on FastQC and want to get rid of read with a quality below 20.

    I tried trim_galore with
    trim_galore ../name1.fastq -q 20 --paired > trim_name.fastq

    which gives me:
    "No quality encoding type selected. Assuming that the data provided uses Sanger encoded Phred scores (default)
    Please provide an even number of input files for paired-end FastQ trimming! Aborting ..." <- i got the idea of this line

    But i don't really know how to find out how my data are encoded.
    The data look like this.

    @NS500339:99:H3H52AFXX:1:11101:5599:1027 2:N:0:GTGAAA
    NNNCTGGTTATAGGTACATTGAGCAACTGACTGAAATGCCTCAAAATGTTCTTTACGATGCCATTGGGATATATCAACGGTGGTATATCCAGTGATTTTTTTCTCCATTTTAGCTTCCTTAGCTCCTGAAAATCTCGANANCTCNNAAAA
    +
    ###/AEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEAEEEEEEAEEEEEEEEEEEEEEEEEEEEEEEEEEEE<6/<EEEEEEEEAAE6EEE/EEEEEEEEEEEAAEEEEE/6EE<AEEEEAEA<EEE/EEE/AAAE#<#<A/##/<<6


    I also tried fastx toolbox with the following command
    fastq_quality_filter -q 20 -i ../name.fastq -v -o trimmed_name.fastq

    The program works,
    Minimum percentage: 0
    Input: 4564772 reads.
    Output: 4564772 reads.
    discarded 0 (0%) low-quality reads.

    but if i check it again with FastQC, there are still reads with a quality below 20.


    Maybe someone can please help me with one of the programs.

    Thanks a lot, Alex

  • #2
    Grab a copy of BBMap and then run

    Code:
    $ zcat yourfile.fastq.gz | head -20 > new.fq
    $ testformat.sh in=new.fq
    to identify the format of the encoding in your file.

    While you have a copy of BBMap handy, use bbduk.sh to do trimming.

    Code:
    $ bbduk.sh -Xmx1g in=reads.fq.gz out=clean.fq.gz qtrim=r trimq=10

    Comment


    • #3
      Thanks

      Thanks a lot, if now the following mapping step also works, this will be the solution

      Comment


      • #4
        You could stay with BBMap and use bbmap.sh to do the mapping as well.

        Comment

        Latest Articles

        Collapse

        • seqadmin
          Non-Coding RNA Research and Technologies
          by seqadmin




          Non-coding RNAs (ncRNAs) do not code for proteins but play important roles in numerous cellular processes including gene silencing, developmental pathways, and more. There are numerous types including microRNA (miRNA), long ncRNA (lncRNA), circular RNA (circRNA), and more. In this article, we discuss innovative ncRNA research and explore recent technological advancements that improve the study of ncRNAs.

          Nobel Prize for MicroRNA Discovery
          This week,...
          10-07-2024, 08:07 AM
        • seqadmin
          Recent Developments in Metagenomics
          by seqadmin





          Metagenomics has improved the way researchers study microorganisms across diverse environments. Historically, studying microorganisms relied on culturing them in the lab, a method that limits the investigation of many species since most are unculturable1. Metagenomics overcomes these issues by allowing the study of microorganisms regardless of their ability to be cultured or the environments they inhabit. Over time, the field has evolved, especially with the advent...
          09-23-2024, 06:35 AM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by seqadmin, 10-11-2024, 06:55 AM
        0 responses
        10 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 10-02-2024, 04:51 AM
        0 responses
        109 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 10-01-2024, 07:10 AM
        0 responses
        114 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 09-30-2024, 08:33 AM
        1 response
        119 views
        0 likes
        Last Post EmiTom
        by EmiTom
         
        Working...
        X