Hi,
I am processing analysis on reads obtained from ribosome profiling experiments.
I need first to clip adapter before mapping my reads.
This step, however, is very time consuming with fastx_clipper.
I am wondering if there is any other way to it faster, for instance directly into hisat2 would be awesome.
Thanks for your advises,
G
I am processing analysis on reads obtained from ribosome profiling experiments.
I need first to clip adapter before mapping my reads.
This step, however, is very time consuming with fastx_clipper.
I am wondering if there is any other way to it faster, for instance directly into hisat2 would be awesome.
Thanks for your advises,
G
But for 30bp ribosomal reads, you could add "maxindel=10" (just a random small number I picked). Searching for long indels (which BBMap does by default) is not necessary when aligning to ribosomes (which as far as I know are never spliced); it decreases both speed and sensitivity. BBMap does have a "perfectmode" flag which allows only perfect alignments, but I do not really think it is appropriate in this case (or most situations, especially those involving quantification).
Comment