protcheck: Protein sequence amino acid type sanity check

View source: R/misc-03-protcheck.R

protcheckR Documentation

Protein sequence amino acid type sanity check

Description

This function checks if the protein sequence's amino acid types are in the 20 default types.

Usage

protcheck(x)

Arguments

x

A character vector, as the input protein sequence.

Value

Logical. TRUE if all of the amino acid types of the sequence are within the 20 default types.

Author(s)

Nan Xiao <https://nanx.me>

Examples

x <- readFASTA(system.file("protseq/P00750.fasta", package = "protr"))[[1]]
protcheck(x) # TRUE
protcheck(paste(x, "Z", sep = "")) # FALSE

road2stat/protr documentation built on April 20, 2024, 4:49 a.m.