I have a BIM file where one of the variant identifiers contains a comment character: HPA#_SNP1. When trying to process this file, seqBED2GDS fails with this error:
Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, :
line 341656 did not have 6 elements
I have a BIM file where one of the variant identifiers contains a comment character:
HPA#_SNP1
. When trying to process this file,seqBED2GDS
fails with this error:Can you turn off comment character recognition in
seqBED2GDS
, or add an option to do so? Modifying this line: https://github.com/zhengxwen/SeqArray/blob/master/R/Conversion.R#L831 withcomment.char=""
would fix the issue.