Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Brian Bushnell
    replied
    Not currently... but I'll plan to add a flag for that.

    Leave a comment:


  • vmikk
    replied
    Hello!
    Is it possible to use cutprimers.sh to cut the sequence AND to preserve the primer sites around?

    Leave a comment:


  • Brian Bushnell
    replied
    Hi - sorry I somehow missed this question! Yes, as Genomax stated, please just cite it something like this (altered according the format of the journal):

    "BBDuk - Bushnell B. - sourceforge.net/projects/bbmap/"

    Leave a comment:


  • GenoMax
    replied
    Originally posted by mendezg View Post
    How would you like us to cite bbduk in papers?
    In the past Brian has asked people to link to the project site on source forge.

    Leave a comment:


  • mendezg
    replied
    How would you like us to cite bbduk in papers?

    Leave a comment:


  • Thowell
    replied
    Thank you for the quick reply Brian.

    I was able to get things working with a pipe. I'm guessing the reads have to be interleaved with this method, but that will work fine for me until you can implement the alternate output flag.

    Thanks again!

    Leave a comment:


  • Brian Bushnell
    replied
    Thanks for noting this. Some tools (like reformat) support the "extin" and "extout" flags which let you override the default, so you could do this:

    reformat.sh in=file.dat out=file2.dat extin=.sam extout=.fq

    But, BBMap doesn't support that right now. I'll add it. And I don't particularly recommend sam -> fastq conversion because the names change, since in sam format read 1 and read 2 must have identical names, whereas in fastq format they will typically have "/1" and "/2" or similar to differentiate them. Though you can do that conversion if you want.

    I have not used Galaxy and don't know what's possible, but until I make this change, I would suggest one of these:

    1) Use BBDuk for this filtering; its default output format is fastq and it's probably faster than BBMap anyway in this case. The syntax is very similar. On the command line, it would be something like "bbduk.sh in=reads.fq outu=clean.fq ref=ecoli.fasta".

    2) Tell BBMap "outu=stdout.fq" and pipe that to a file, if Galaxy supports pipes.

    As for your question about pairing, the normal behavior in paired-mapping mode is:

    "out=" will get everything.
    "outm=" will get all pairs in which either of the reads mapped to the reference.
    "outu=" will get all pairs in which neither read mapped to the reference.

    For BBDuk, it's slightly different but essentially the same:
    "out=" is the same as "outu=".
    "outu", aka "out", will get all pairs in which neither had a kmer match to the reference.
    "outm" will get all pairs in which either had a kmer match to the reference.
    For BBDuk, this behavior can be changed with the "reib" (removeIfEitherBad) flag. The assumption of that flag's name is that the reference is contaminants being filtered against, so the default "reib=true" means any pair where either matches the contaminant is removed.

    So, for both tools, if the input data is paired, the output data will also be paired - pairs are always kept together in all streams.

    Leave a comment:


  • Thowell
    replied
    I have been using bbmap (and other bbtools) for some of my analyses, and so far they are a great set of tools! Unfortunately I have come across a problem, and some preliminary searching hasn't turned up an answer.

    I am trying to build bbmap into a galaxy workflow, using it to remove reads that map to a reference of a contaminant (E.coli in this case). The problem is that I just want the unmapped reads in fastq format, but because galaxy names everything with the .dat extension, I cannot tell bbmap to output in fastq format and it defaults to sam. Is there another way to specify the output format?

    I'm sure I could convert the sam back to fastq, but the picard tools sam to fastq tool is throwing an error saying that there are unpaired reads in the sam. I know I can probably do this another way, but it seems silly to use another tool when bbmap can already output in the format I want!

    I'm also confused as to why there would be unpaired reads, since the bbmap documentation for "outu" says:
    Write only unmapped reads to this file. Does not include unmapped paired reads with a mapped mate.
    Sounds to me like all the reads should be paired?


    Thank you in advance, and thanks for the great tools!

    Leave a comment:


  • fdts
    replied
    Wonderful, thanks!

    Leave a comment:


  • Brian Bushnell
    replied
    Zero-count lines are suppressed by default, but they should be printed if you include the flag "nzo=f" (nonzeroonly=false). That's not documented in BBSplit's shellscript, just BBMap's; I'll add it to the documentation.

    Leave a comment:


  • fdts
    replied
    Just a comment, not sure if this is the place:
    It would be helpful for downstream analysis if the refstat files that can be output using bbsplit produced 0s (zeros) for references that have no reads mapped to them instead of omitting data for these references. I was working on generating a table for visualization when I noticed missing data.

    Leave a comment:


  • duane.hassane
    replied
    Ok. Will take a look at this approach. Thank you!

    Leave a comment:


  • Brian Bushnell
    replied
    Hmm, I don't currently have a better solution than BBDuk or the msa/cutprimers pair. You might get a better result if you first bin the amplicons by which primers they use, though, so that then you can trim them only using the correct primers using aggressive settings, rather than with all possible primers. You can try using Seal for that. For example:

    seal.sh in=amplicons.fq ref=primer1.fa pattern=out%.fq k=(whatever)

    That will produce one file per sequence in the primer file, with all the reads that best match it (meaning, share the most kmers). For that purpose you should only use the left primers or right primers as reference, not both at the same time. Or, ideally, the reference would look like this:

    Primer pairs: {(AAAT, GGCC), (TTTT, GGGG)}

    Reference file:

    >1
    AAATNGGCC
    >2
    TTTTNGGGG

    ...etc, where each primer pair is concatenated together with a single N between the sequences.
    Last edited by Brian Bushnell; 06-11-2015, 11:17 AM.

    Leave a comment:


  • duane.hassane
    replied
    Yes, bbduk with restrictright and/or restrictleft set to constrain the search to the ends where primers are located. This is actually extremely fast and efficient even with hundreds of primers. Unfortunately, we have encountered some specificity issues with this approach (over- and under-trimming) leading to small gaps in coverage ... with no one set of parameters being optimal for all amplicons.

    Leave a comment:


  • luc
    replied
    Have you tried to remove these primer sequences with bbduk?

    Leave a comment:

Latest Articles

Collapse

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by SEQadmin2, 06-09-2026, 11:58 AM
0 responses
22 views
0 reactions
Last Post SEQadmin2  
Started by SEQadmin2, 06-05-2026, 10:09 AM
0 responses
27 views
0 reactions
Last Post SEQadmin2  
Started by SEQadmin2, 06-04-2026, 08:59 AM
0 responses
38 views
0 reactions
Last Post SEQadmin2  
Started by SEQadmin2, 06-02-2026, 12:03 PM
0 responses
61 views
0 reactions
Last Post SEQadmin2  
Working...