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