Sorry guys,
In $CUT/cutadapt -a CTGTAGGCACCATCAAT filename.fastq > fielename_trimmed.fastq syntax
$CUT/cutadapt -a CTGTAGGCACCATCAAT filename.fastq > fielename_trimmed.fastq
Which should I add to exclude the reads with less than 15 bases? I mean m option about which I could not find any clue in cutadapt documentation
From cutadapt -h:
cutadapt -h
-m LENGTH, --minimum-length=LENGTH Discard trimmed reads that are shorter than LENGTH. Reads that are too short even before adapter removal are also discarded. In colorspace, an initial primer is not counted (default: 0).
So you should add -m 15
-m 15
Thank you Asaf
Is the -m from cutadapt setting minimal length before adaptor trimming or after adapter trimming?
-m
Login before adding your answer.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Thank you Asaf
Is the
-m
from cutadapt setting minimal length before adaptor trimming or after adapter trimming?