pfamAC2ID {PFAM} | R Documentation |
Mapping function from Accession number (AC) to the associated Identification (ID)
pfamAC2ID(ac=NULL)
ac |
A character vector of Accession number or NULL (default) |
If ac
is a vector of Accession number, pfamAC2ID will
return a list of associated Identification for the given ac
. If
ac
is NULL, pfamAC2ID(ac=NULL) (or pfamAC2ID())
will return a list of associated Identification for all the Accession number in
the database.
Extra information: None
More Details: None
A list of Identification.
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: AC2ID <- pfamAC2ID() head(AC2ID) pfamAC2ID(ac=sample(names(AC2ID), 3)) ## End(Not run)