albert coster wrote: > > Dear all, > > I have a file with some sequence (seq.txt). I am writting following code > and > getting error! Can please help me? > > > seqfile<-read.table(file="seq.txt") > Warning message: > In read.table(file = "seq.txt") : > incomplete final line found by readTableHeader on 'seq.txt' >
The message is a warning not an error. It means that the last line of your file does not end with a line-ending sequence. Such as carriage return/linefeed (\r\n) or a just a linefeed (\n). In your editor you either need to press <return> at the end of the last line or tell the editor to terminate the last line with a line-endng character. Berend -- View this message in context: http://r.789695.n4.nabble.com/problem-in-reading-a-sequence-file-tp3645717p3646214.html Sent from the R help mailing list archive at Nabble.com. ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.