Permalink
Please sign in to comment.
Showing
with
1,638 additions
and 2,016 deletions.
- +12 −22 DESCRIPTION
- +0 −675 LICENSE
- +8 −0 NAMESPACE
- +1 −1 R/RcppExports.R
- +23 −18 R/btr.R
- +188 −188 R/initialisation.R
- +249 −234 R/search.R
- BIN build/vignette.rds
- +7 −0 data/datalist
- BIN data/wilson_raw_rnaseq.rda
- +15 −0 inst/CITATION
- +268 −0 inst/doc/btr.R
- +217 −237 vignettes/btr.md → inst/doc/btr.Rmd
- +598 −0 inst/doc/btr.html
- +0 −2 man/calc_mscore.Rd
- +0 −21 man/m_score.Rd
- +16 −0 man/model_train.Rd
- +9 −9 src/RcppExports.cpp
- +5 −3 src/score_calculation.cpp
- +21 −18 src/simulation.cpp
- +1 −7 vignettes/btr.Rmd
- +0 −581 vignettes/btr.html
- BIN vignettes/btr.pdf
- BIN vignettes/btr_files/figure-markdown_github/unnamed-chunk-17-1.png
- BIN vignettes/btr_files/figure-markdown_github/unnamed-chunk-23-1.png
- BIN vignettes/btr_files/figure-markdown_github/unnamed-chunk-31-1.png
34
DESCRIPTION
| @@ -1,31 +1,21 @@ | |||
| Package: BTR | Package: BTR | ||
| Type: Package | Type: Package | ||
| -Title: Tools For Training and Analysing Asynchronous Boolean Models | +Title: Training and Analysing Asynchronous Boolean Models | ||
| -Version: 1.2.2 | +Version: 1.2.4 | ||
| -Date: 2015-10-22 | +Date: 2016-9-13 | ||
| Author: Chee Yee Lim | Author: Chee Yee Lim | ||
| Maintainer: Chee Yee Lim <cyl49@cam.ac.uk> | Maintainer: Chee Yee Lim <cyl49@cam.ac.uk> | ||
| -Description: This package contains tools for inferring asynchronous Boolean | +Description: Tools for inferring asynchronous Boolean | ||
| models from single-cell expression data. | models from single-cell expression data. | ||
| -Depends: | +Depends: R (>= 3.0.3), methods | ||
| - R (>= 3.0.3), | +Imports: parallel, Rcpp (>= 0.11.4), foreach (>= 1.4.1), doParallel (>= | ||
| - methods | + 1.0.8), poweRlaw (>= 0.30.0), diptest (>= 0.75-7), igraph (>= | ||
| -Imports: | + 1.0.1), infotheo (>= 1.2.0), entropy (>= 1.2.1) | ||
| - parallel, | |||
| - Rcpp (>= 0.11.4), | |||
| - foreach (>= 1.4.1), | |||
| - doParallel (>= 1.0.8), | |||
| - poweRlaw (>= 0.30.0), | |||
| - diptest (>= 0.75-7), | |||
| - igraph (>= 1.0.1), | |||
| - infotheo (>= 1.2.0), | |||
| - entropy (>= 1.2.1) | |||
| LinkingTo: Rcpp | LinkingTo: Rcpp | ||
| License: GPL-3 | License: GPL-3 | ||
| LazyData: true | LazyData: true | ||
| -Suggests: | +Suggests: bnlearn (>= 3.8.1), knitr, rmarkdown | ||
| - bnlearn (>= 3.8.1), | +VignetteBuilder: knitr, rmarkdown | ||
| - knitr, | |||
| - rmarkdown | |||
| -VignetteBuilder: knitr | |||
| RoxygenNote: 5.0.1 | RoxygenNote: 5.0.1 | ||
| +NeedsCompilation: yes | |||
| +Packaged: 2016-09-17 10:17:03 UTC; cylim | |||
| @@ -1,19 +1,24 @@ | |||
| -#' @title BTR: A package for studying asynchronous Boolean models | +#' @title BTR: A package for studying asynchronous Boolean models | ||
| -#' | +#' | ||
| -#' @description | +#' @description | ||
| -#' This package contains tools for Boolean model manipulation, as well as the search for the best Boolean model. | +#' This package contains tools for Boolean model manipulation, as well as the search for the best Boolean model. | ||
| -#' | +#' | ||
| -#' @docType package | +#' @docType package | ||
| -#' @name BTR | +#' @name BTR | ||
| -NULL | +NULL | ||
| - | + | ||
| -## All the Roxygen codes below are for generating the correct NAMESPACE file. | +## All the Roxygen codes below are for generating the correct NAMESPACE file. | ||
| -#' @import methods | +#' @import methods | ||
| -#' @import parallel | +#' @import parallel | ||
| -#' @import foreach | +#' @import foreach | ||
| -#' @import doParallel | +#' @import doParallel | ||
| -NULL | +NULL | ||
| - | + | ||
| -#' @useDynLib BTR | +#' @useDynLib BTR | ||
| -#' @importFrom Rcpp sourceCpp evalCpp | +#' @importFrom Rcpp sourceCpp evalCpp | ||
| +NULL | |||
| + | |||
| +#' @importFrom grDevices rgb | |||
| +#' @importFrom stats aggregate kmeans median rbinom runif | |||
| +#' @importFrom utils combn write.csv | |||
| NULL | NULL | ||
Oops, something went wrong.
0 comments on commit
6b786b1