Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Brian Bushnell
    Super Moderator
    • Jan 2014
    • 2709

    #16
    Oh - that's an intentional protection from overwriting files. Just delete the output file first or add the "overwrite" flag.

    Comment

    • lyw1
      Member
      • Sep 2014
      • 33

      #17
      high contaninants

      Thanks.

      Input is being processed as unpaired

      Input: 385043 reads 10781204 bases.
      Contaminants: 341911 reads (88.80%) 9573508 bases (88.80%)
      Result: 43132 reads (11.20%) 1207696 bases (11.20%)

      What is diffinition of contaminants? It looks very high.

      Comment

      • lyw1
        Member
        • Sep 2014
        • 33

        #18
        I need to read 30 nt for sequences. Miseq read 32 nt in sequencing. Thus many sequences have NN at last 2 positions. Does this relate to high contaminant rate?

        Comment

        • Brian Bushnell
          Super Moderator
          • Jan 2014
          • 2709

          #19
          Are you using bbduk.sh? That's the only one that prints anything about contaminants. Can you show your specific command line?

          Anyway, if you tried filtering out adapters and you got a result like that, it means you have almost no product and mostly adapter sequence.

          Comment

          • lyw1
            Member
            • Sep 2014
            • 33

            #20
            Yes, bbduk.sh.

            Input is being processed as unpaired

            Input: 385043 reads 10781204 bases.
            Contaminants: 341911 reads (88.80%) 9573508 bases (88.80%)
            Result: 43132 reads (11.20%) 1207696 bases (11.20%)

            Comment

            • Brian Bushnell
              Super Moderator
              • Jan 2014
              • 2709

              #21
              Please give me the exact command line (what you typed before you hit enter).

              Comment

              • lyw1
                Member
                • Sep 2014
                • 33

                #22
                k=16 shows high contaminants than k=26

                zheng@zheng-XPS-8500:~/Desktop/bbmap/20140916ngs$ bbduk.sh -Xmx1g in=probe48mix25fg_S7_L001_R2_001.fastq ref=ngs13template.fasta stats=probe48mix25fg_S7_L001_R2_001_26.txt k=26 fbm
                java -ea -Xmx1g -cp /home/zheng/Desktop/bbmap/current/ jgi.BBDukF -Xmx1g in=probe48mix25fg_S7_L001_R2_001.fastq ref=ngs13template.fasta stats=probe48mix25fg_S7_L001_R2_001_26.txt k=26 fbm
                Executing jgi.BBDukF [-Xmx1g, in=probe48mix25fg_S7_L001_R2_001.fastq, ref=ngs13template.fasta, stats=probe48mix25fg_S7_L001_R2_001_26.txt, k=26, fbm]

                No output stream specified. To write to stdout, please specify 'out=stdout.fq' or similar.
                Initial:
                Memory: free=237m, used=14m

                Added 13 kmers; time: 0.023 seconds.
                Memory: free=228m, used=23m

                Input is being processed as unpaired

                Input: 159642 reads 4469976 bases.
                Contaminants: 130724 reads (81.89%) 3660272 bases (81.89%)
                Result: 28918 reads (18.11%) 809704 bases (18.11%)

                Time: 0.197 seconds.
                Reads Processed: 159k 811.47k reads/sec
                Bases Processed: 4469k 22.72m bases/sec
                zheng@zheng-XPS-8500:~/Desktop/bbmap/20140916ngs$ ^C
                zheng@zheng-XPS-8500:~/Desktop/bbmap/20140916ngs$ bduk.sh -Xmx1g in=probe48mix25fg_S7_L001_R2_001.fastq ref=ngs13template.fasta stats=probe48mix25fg_S7_L001_R2_001_16.txt k=16 fbm
                bduk.sh: command not found
                zheng@zheng-XPS-8500:~/Desktop/bbmap/20140916ngs$ bbduk.sh -Xmx1g in=probe48mix25fg_S7_L001_R2_001.fastq ref=ngs13template.fasta stats=probe48mix25fg_S7_L001_R2_001_16.txt k=16 fbm
                java -ea -Xmx1g -cp /home/zheng/Desktop/bbmap/current/ jgi.BBDukF -Xmx1g in=probe48mix25fg_S7_L001_R2_001.fastq ref=ngs13template.fasta stats=probe48mix25fg_S7_L001_R2_001_16.txt k=16 fbm
                Executing jgi.BBDukF [-Xmx1g, in=probe48mix25fg_S7_L001_R2_001.fastq, ref=ngs13template.fasta, stats=probe48mix25fg_S7_L001_R2_001_16.txt, k=16, fbm]

                No output stream specified. To write to stdout, please specify 'out=stdout.fq' or similar.
                Initial:
                Memory: free=237m, used=14m

                Added 143 kmers; time: 0.028 seconds.
                Memory: free=228m, used=23m

                Input is being processed as unpaired

                Input: 159642 reads 4469976 bases.
                Contaminants: 151727 reads (95.04%) 4248356 bases (95.04%)
                Result: 7915 reads (4.96%) 221620 bases (4.96%)

                Comment

                • Brian Bushnell
                  Super Moderator
                  • Jan 2014
                  • 2709

                  #23
                  So... that's telling you that you are getting matches between the stuff in your input file (probe48mix25fg_S7_L001_R2_001.fastq) and your reference file (ngs13template.fasta). And a shorter kmer will always find more matches in the presence of error.

                  probe48mix25fg_S7_L001_R2_001_26.txt will contain a list of which reference sequences were seen, and how many times they were seen.

                  Comment

                  • lyw1
                    Member
                    • Sep 2014
                    • 33

                    #24
                    And a shorter kmer will always find more matches in the presence of error.

                    Here k=16 shows less match sequences than k=26

                    for k=16
                    Input: 159642 reads 4469976 bases.
                    Contaminants: 151727 reads (95.04%) 4248356 bases (95.04%)
                    Result: 7915 reads (4.96%) 221620 bases (4.96%)

                    for k=26
                    Input: 159642 reads 4469976 bases.
                    Contaminants: 130724 reads (81.89%) 3660272 bases (81.89%)
                    Result: 28918 reads (18.11%) 809704 bases (18.11%)

                    Comment

                    • Brian Bushnell
                      Super Moderator
                      • Jan 2014
                      • 2709

                      #25
                      In this case, the output is misleading... BBDuk assumes that the ref file is a file of contaminants because that's what I originally designed it for. So "Contaminants" actually means "Things that match the reference". I may change the wording eventually.

                      In other words, 95.04% of the reads matched the reference for K=16 and 81.89% did for K=26.

                      Comment

                      • lyw1
                        Member
                        • Sep 2014
                        • 33

                        #26
                        Great, thanks.

                        Zheng

                        Comment

                        • lyw1
                          Member
                          • Sep 2014
                          • 33

                          #27
                          Is there a size limitation for the referece sequences? It will not work when I add a 20 bp reference sequence.

                          Comment

                          • Brian Bushnell
                            Super Moderator
                            • Jan 2014
                            • 2709

                            #28
                            The size limit is the same as kmer length. So, if k=30, it will not work with anything less than a 30bp reference.

                            Comment

                            • lyw1
                              Member
                              • Sep 2014
                              • 33

                              #29
                              Thanks.

                              How do you separate unambiguousReads and ambiguousReads in bbmap.sh?

                              Comment

                              • Brian Bushnell
                                Super Moderator
                                • Jan 2014
                                • 2709

                                #30
                                Ambiguously mapped reads get a "XT:A:R" tag in the sam output while unambiguously mapped get "XT:A:U".

                                You can also forbid ambiguously-mapping reads using the flag "ambig=toss", which will consider them unmapped.

                                Comment

                                Latest Articles

                                Collapse

                                • SEQadmin2
                                  Beyond CRISPR/Cas9: Understand, Choose, and Use the Right Genome Editing Tool
                                  by SEQadmin2



                                  CRISPR/Cas9 sparked the gene editing revolution for both research and therapeutics.1 But this system still showed severe issues that limited its applications. The most prominent were the heavy reliance on PAM sequences, delivery limitations, double-stranded breaks that prompt unintended edits and cell death, and editing inefficiency (both in targeting and in knock-in reliability).

                                  Despite this, “CRISPR helped turn genome editing from a specialized technique into
                                  ...
                                  07-31-2026, 11:01 AM
                                • SEQadmin2
                                  Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
                                  by SEQadmin2


                                  Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

                                  The systematic characterization of the human proteome has
                                  ...
                                  07-20-2026, 11:48 AM

                                ad_right_rmr

                                Collapse

                                News

                                Collapse

                                Topics Statistics Last Post
                                Started by SEQadmin2, 08-06-2026, 07:41 AM
                                0 responses
                                21 views
                                0 reactions
                                Last Post SEQadmin2  
                                Started by SEQadmin2, 08-03-2026, 10:13 AM
                                0 responses
                                33 views
                                0 reactions
                                Last Post SEQadmin2  
                                Started by SEQadmin2, 07-31-2026, 02:55 AM
                                0 responses
                                43 views
                                0 reactions
                                Last Post SEQadmin2  
                                Started by SEQadmin2, 07-24-2026, 12:17 PM
                                0 responses
                                26 views
                                0 reactions
                                Last Post SEQadmin2  
                                Working...