Skip to content

Commit

Permalink
added get_cdd
Browse files Browse the repository at this point in the history
  • Loading branch information
missuse committed Oct 15, 2021
1 parent e00e00e commit a7b2a5a
Show file tree
Hide file tree
Showing 7 changed files with 681 additions and 78 deletions.
6 changes: 6 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ S3method(get_big_pi,character)
S3method(get_big_pi,data.frame)
S3method(get_big_pi,default)
S3method(get_big_pi,list)
S3method(get_cdd,AAStringSet)
S3method(get_cdd,character)
S3method(get_cdd,data.frame)
S3method(get_cdd,default)
S3method(get_cdd,list)
S3method(get_espritz,AAStringSet)
S3method(get_espritz,character)
S3method(get_espritz,data.frame)
Expand Down Expand Up @@ -71,6 +76,7 @@ S3method(scan_nglc,data.frame)
S3method(scan_nglc,default)
S3method(scan_nglc,list)
export(get_big_pi)
export(get_cdd)
export(get_espritz)
export(get_hmm)
export(get_netGPI)
Expand Down
6 changes: 4 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ ragp 0.3.5
New Features
------------

* added new function `get_cdd()` which queries the the Conserved Domain Database (https://www.ncbi.nlm.nih.gov/Structure/bwrpsb/bwrpsb.cgi)
* added new function `get_signalp5()` which queries SignalP5 web server (http://www.cbs.dtu.dk/services/SignalP)
* added new function `get_tmhmm()` which queries TMHMM v. 2.0 web server (http://www.cbs.dtu.dk/services/TMHMM/)
* `plot_prot()` `nsp` argument can now be `"signalp"`, `"signalp5"` or `"none"`. Default is `"signalp5"`. This argument determines if `get_signalp()` or `get_signalp5()` are used for N-sp prediction.
* `plot_prot()` `tm` argument can now be `"phobius"`, `"tmhmm"` or `"none"`. Default is `"phobius"`. This argument determines if `get_phobius()` or `get_tmhmm()` are used for TM prediction.
* `plot_prot()` `nsp` argument can now be `"signalp"`, `"signalp5"` or `"none"`. Default is `"signalp5"`. This argument determines if `get_signalp()` or `get_signalp5()` are used for N-sp prediction. Data.frame input is accepted as well.
* `plot_prot()` `tm` argument can now be `"phobius"`, `"tmhmm"` or `"none"`. Default is `"phobius"`. This argument determines if `get_phobius()` or `get_tmhmm()` are used for TM prediction. Data.frame input is accepted as well.
* `plot_prot()` `domain` argument can now be `"cdd"`, `"hmm"` or `"none"`. Default is `"cdd"`. This argument determines if `get_hmm()` or `get_cdd()` are used for domain annotation. Data.frame input is accepted as well.
* all `get_*` and `scan_*` functions, as well as `maab()` now work with `AAStringSet` class objects. #5

Bug Fixes and Improvements
Expand Down
Loading

0 comments on commit a7b2a5a

Please sign in to comment.