getSeqs {crosshybDetector}R Documentation

Read sequences

Description

Reads sequences from a two columns file.

Usage

getSeqs(file, start = NULL, stop = NULL)

Arguments

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

Value

A vector with the probe sequences

Author(s)

Paolo Uva

Examples

## Not run: 
# Keep sequences from position 1 to 40
seqs <- getSeqs(file="myfile.txt",start=1, stop=40)
## End(Not run)

[Package crosshybDetector version 1.0.4 Index]