pfamAC2TC {PFAM} | R Documentation |
Mapping function from Accession number (AC) to the associated Trusted cutoff (TC)
pfamAC2TC(ac=NULL)
ac |
A character vector of Accession number or NULL (default) |
If ac
is a vector of Accession number, pfamAC2TC will
return a list of associated Trusted cutoff for the given ac
. If
ac
is NULL, pfamAC2TC(ac=NULL) (or pfamAC2TC())
will return a list of associated Trusted cutoff for all the Accession number in
the database.
Extra information: None
More Details: None
A list of Trusted cutoff.
Ting-Yuan Liu
http://www.sanger.ac.uk/Software/Pfam/ and ftp://ftp.sanger.ac.uk/pub/databases/Pfam/current_release/userman.txt
## Not run: AC2TC <- pfamAC2TC() head(AC2TC) pfamAC2TC(ac=sample(names(AC2TC), 3)) ## End(Not run)