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