#' Read Protein Sequences in FASTA Format
#'
#' Reads protein sequences in FASTA format.
#'
#' @param file The name of the file which the sequences in fasta format are
#' to be read from. If it does not contain an absolute or
#' relative path, the file name is relative to the current
#' working directory, \code{\link{getwd}}.
#' The default here is to read the \code{P00750.fasta} file which
#' is present in the \code{protseq} directory of the Rcpi package.
#'
#' @param legacy.mode If set to \code{TRUE}, lines starting with a semicolon ';'
#' are ignored. Default value is \code{TRUE}.
#' @param seqonly If set to \code{TRUE}, only sequences as returned without
#' attempt to modify them or to get their names and
#' annotations (execution time is divided approximately
#' by a factor 3). Default value is \code{FALSE}.
#'
#' @return Character vector.
#'
#' @seealso
#' See \code{\link{readPDB}} for reading protein sequences
#' in PDB format.
#'
#' @export readFASTA
#'
#' @references
#' Pearson, W.R. and Lipman, D.J. (1988)
#' Improved tools for biological sequence comparison.
#' \emph{Proceedings of the National Academy of Sciences
#' of the United States of America}, 85: 2444-2448.
#'
#' @examples
#' P00750 = readFASTA(system.file('protseq/P00750.fasta', package = 'Rcpi'))
#' P00750
readFASTA = function (file = system.file('protseq/P00750.fasta',
package = 'Rcpi'),
legacy.mode = TRUE, seqonly = FALSE) {
# Read the fasta file as a vector of strings
lines = readLines(file)
# Remove comment lines starting with a semicolon ';'
if (legacy.mode) {
comments = grep("^;", lines)
if (length(comments) > 0) {
lines = lines[-comments]
}
}
# Get the line numbers where sequences names are
ind = which(substr(lines, 1L, 1L) == ">")
# Compute the total number of sequences
nseq = length(ind)
if (nseq == 0) stop("no line starting with a > character found")
# Localize sequence data
start = ind + 1
end = ind - 1
end = c(end[-1], length(lines))
# Read in sequences
sequences = lapply(seq_len(nseq),
function(i) paste(lines[start[i]:end[i]], collapse = ""))
if (seqonly) return(sequences)
# Read in sequence names
nomseq = lapply(seq_len(nseq), function (i) {
firstword = strsplit(lines[ind[i]], " ")[[1]][1]
substr(firstword, 2, nchar(firstword))
})
# Give the sequences names to the list elements
names(sequences) = nomseq
return(sequences)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.