File: test_get_homologs_besthits.R

package info (click to toggle)
r-bioc-stringdb 2.18.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,572 kB
  • sloc: makefile: 5
file content (8 lines) | stat: -rw-r--r-- 254 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
test_get_homologs_besthits <- function() {

  string_db <- STRINGdb$new( version="11.0b", species=9606, score_threshold=400 ) 
  stringid = string_db$mp('CDK1') 
  homologs = string_db$get_homologs_besthits( stringid )
  checkTrue(nrow(homologs) > 0)

}