HI,
When I type the following in edgeR:
> # Process raw sequences from fastq file
> x = processAmplicons("Index2.Plate_10.fastqsanger", barcodefile="Samples1.txt",
+ hairpinfile="Hairpins1-10.txt", hairpinStart=28, hairpinEnd=50, verbose=TRUE)
I get the following error:
Error in processAmplicons("Index2.Plate_10.fastqsanger", barcodefile = "Samples1.txt", :
Barcode sequence length is set to 5, there are barcode sequence not with specified length.
It is true my barcode length is 6 not 5. How can I change this on edgeR? I can't seem to find the script that I can edit anywhere on the edgeR program/folder.
Thanks
Are you sure you need to use
fix
? BothbarcodeStart
andbarcodeEnd
are arguments toprocessAmplicons
and can be changed in the function call, there's no need to modify the body of the function.