pfamTC2AC {PFAM} | R Documentation |
Mapping function from Trusted cutoff (TC) to the associated Accession number (AC)
pfamTC2AC(tc=NULL)
tc |
A character vector of Trusted cutoff or NULL (default) |
If tc
is a vector of Trusted cutoff, pfamTC2AC will
return a list of associated Accession number for the given tc
. If
tc
is NULL, pfamTC2AC(tc=NULL) (or pfamTC2AC())
will return a list of associated Accession number for all the Trusted cutoff 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: TC2AC <- pfamTC2AC() head(TC2AC) pfamTC2AC(tc=sample(names(TC2AC), 3)) ## End(Not run)