R/read.series.seq.R

read.series.seq <- function (fich="NULL")
# 
# Reads a sequence file. File must be saved from excel as TXT, with TAB
# separators
# returns the series of sequences that must be analysed by compseq.
{
if(fich=="NULL") stop("Missing file name\n")
seri<-scan(file=fich,what="character",sep="\n")
seri<-strsplit(seri,"\t")
seri
}

Try the sequence package in your browser

Any scripts or data that you put into this service are public.

sequence documentation built on March 26, 2020, 7:30 p.m.