getSeqs {crosshybDetector} | R Documentation |
Reads sequences from a two columns file.
getSeqs(file, start = NULL, stop = NULL)
file |
the text file containing the sequences. The files MUST have no header row and the following columns: i)probe names and ii) probe sequences |
start |
integer. The first element of the sequence to keep. If is NULL (default), all the sequence will be kept |
stop |
integer. The last element of the sequence to keep. If is NULL (default), all the sequence will be kept |
A vector with the probe sequences
Paolo Uva
## Not run: # Keep sequences from position 1 to 40 seqs <- getSeqs(file="myfile.txt",start=1, stop=40) ## End(Not run)