Hi, I am trying to trim 25 nucleotides from each end of a read, by doing so I am receiving the following error:
Error in .Call2("C_solve_user_SEW", refwidths, start, end, width, translate.negative.coord, : solving row 27: the supplied start/end lead to a negative width
Does anybody know what does it mean? Alternatively, any suggestions for a up-to-date trimming tool? (tried cutadapt and QuasR)
the code and output:
preprocessReads(filename = "test_read1.fastq",
outputFilename = "trimmed18_test_read1.fastq",
filenameMate = "test_read2.fastq",
outputFilenameMate = "trimmed18_test_read2.fastq",
truncateStartBases = 18,
truncateEndBases = 18)
sessionInfo( )
Thanks