To import a SAM file or other data having “#” as data using read.table, it is necessary to change the “comment.char” option.
test.sam <- read.table('test.sam', comment.char = "")
To import a SAM file or other data having “#” as data using read.table, it is necessary to change the “comment.char” option.
test.sam <- read.table('test.sam', comment.char = "")
Leave a Reply