Permalink
Please sign in to comment.
Showing
with
2,648 additions
and 2,540 deletions.
- +31 −29 DESCRIPTION
- +1 −1 NAMESPACE
- +17 −17 R/boolmodel_class.R
- +18 −18 R/btr.R
- +342 −323 R/compression.R
- +136 −136 R/data_desc.R
- +477 −457 R/general.R
- +188 −179 R/initialisation.R
- +339 −339 R/methods.R
- +87 −15 R/model_modification.R
- +466 −409 R/rand_model.R
- +53 −76 R/score_calculation.R
- +234 −223 R/search.R
- BIN data/example_models.rda
- +1 −1 man/BTR.Rd
- +1 −1 man/BoolModel-class.Rd
- +1 −1 man/amat_to_bm.Rd
- +1 −1 man/bm_to_amat.Rd
- +1 −1 man/bm_to_df.Rd
- +2 −2 man/bon_bmodel.Rd
- +2 −2 man/bon_istate.Rd
- +7 −2 man/calc_mscore.Rd
- +1 −1 man/calc_roc.Rd
- +1 −1 man/check_and.Rd
- +3 −5 man/compress_bmodel.Rd
- +3 −5 man/decompress_bmodel.Rd
- +1 −1 man/decreate_boolmodel.Rd
- +1 −1 man/df_to_bm.Rd
- +1 −1 man/emodel1.Rd
- +1 −1 man/emodel2.Rd
- +1 −1 man/emodel3.Rd
- +1 −1 man/eval_bool.Rd
- +1 −1 man/extract_term.Rd
- +1 −1 man/filter_dflist.Rd
- +8 −3 man/gen_one_rmodel.Rd
- +5 −2 man/gen_singlerule.Rd
- +5 −5 man/gen_two_rmodel.Rd
- +2 −2 man/gen_two_rmodel_dag.Rd
- +4 −2 man/get_encodings.Rd
- +1 −1 man/grow_bmodel.Rd
- +1 −1 man/initialise_data.Rd
- +1 −1 man/initialise_model.Rd
- +6 −3 man/initialise_raw_data.Rd
- +2 −2 man/krum_bmodel.Rd
- +2 −2 man/krum_istate.Rd
- +1 −1 man/man_dist.Rd
- +1 −1 man/match_term.Rd
- +10 −2 man/minmod_internal.Rd
- +13 −2 man/minmod_model.Rd
- +3 −3 man/model_consensus.Rd
- +2 −4 man/model_dist.Rd
- +2 −4 man/model_setdiff.Rd
- +6 −8 man/model_train.Rd
- +1 −1 man/outgenysis_model.Rd
- +1 −1 man/outgraph_model.Rd
- +1 −1 man/outstate_graph.Rd
- +1 −1 man/plotBM.Rd
- +1 −1 man/printBM.Rd
- +1 −1 man/rcpp_simulate.Rd
- +1 −1 man/rcpp_validate.Rd
- +1 −1 man/simulate_model.Rd
- +1 −1 man/unique_raw_data.Rd
- +1 −1 man/validate_adjmat.Rd
- +1 −1 man/vcat.Rd
- +1 −1 man/which.random.min.Rd
- +2 −2 man/wilson_raw_data.Rd
- +2 −2 man/wilson_raw_rnaseq.Rd
- +1 −1 man/writeBM.Rd
- +12 −35 vignettes/btr.Rmd
- +81 −122 vignettes/btr.html
- +42 −64 vignettes/btr.md
- 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
60
DESCRIPTION
| @@ -1,29 +1,31 @@ | ||
| -Package: BTR | ||
| -Type: Package | ||
| -Title: Tools For Training and Analysing Asynchronous Boolean Models | ||
| -Version: 1.1.3 | ||
| -Date: 2015-10-22 | ||
| -Author: Chee Yee Lim | ||
| -Maintainer: Chee Yee Lim <cyl49@cam.ac.uk> | ||
| -Description: This package contains tools for inferring asynchronous Boolean | ||
| - models from single-cell expression data. | ||
| -Depends: | ||
| - R (>= 3.0.3), | ||
| - methods | ||
| -Imports: | ||
| - 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) | ||
| -LinkingTo: Rcpp | ||
| -License: GPL-3 | ||
| -LazyData: true | ||
| -Suggests: | ||
| - bnlearn (>= 3.8.1), | ||
| - knitr, | ||
| - rmarkdown | ||
| -VignetteBuilder: knitr | ||
| -RoxygenNote: 5.0.1 | ||
| +Package: BTR | ||
| +Type: Package | ||
| +Title: Tools For Training and Analysing Asynchronous Boolean Models | ||
| +Version: 1.2.2 | ||
| +Date: 2015-10-22 | ||
| +Author: Chee Yee Lim | ||
| +Maintainer: Chee Yee Lim <cyl49@cam.ac.uk> | ||
| +Description: This package contains tools for inferring asynchronous Boolean | ||
| + models from single-cell expression data. | ||
| +Depends: | ||
| + R (>= 3.0.3), | ||
| + methods | ||
| +Imports: | ||
| + 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 | ||
| +License: GPL-3 | ||
| +LazyData: true | ||
| +Suggests: | ||
| + bnlearn (>= 3.8.1), | ||
| + knitr, | ||
| + rmarkdown | ||
| +VignetteBuilder: knitr | ||
| +RoxygenNote: 5.0.1 |
| @@ -1,17 +1,17 @@ | ||
| -#' @title An S4 class to represent a Boolean Model | ||
| -#' | ||
| -#' @description | ||
| -#' This class represents Boolean Model in a S4 BoolModel object. | ||
| -#' | ||
| -#' @field target character vector. It should contain gene symbols. | ||
| -#' @field targer_var character vector. It should contain the internal representation of gene variables, in the form of "v[0-9]+s" | ||
| -#' @field rule_act list of character vectors. Each element in the list should contain the activating gene variables for a particular target gene. | ||
| -#' @field rule_inh list of character vectors. Each element in the list should contain the inhibiting gene variables for a particular target gene. | ||
| -#' | ||
| -#' @export BoolModel | ||
| -#' @exportClass BoolModel | ||
| -BoolModel = setClass('BoolModel', | ||
| - slots=c(target='character', target_var='character', | ||
| - rule_act='list', rule_inh='list') | ||
| - ) | ||
| - | ||
| +#' @title An S4 class to represent a Boolean Model | ||
| +#' | ||
| +#' @description | ||
| +#' This class represents Boolean Model in a S4 BoolModel object. | ||
| +#' | ||
| +#' @field target character vector. It should contain gene symbols. | ||
| +#' @field targer_var character vector. It should contain the internal representation of gene variables, in the form of "v[0-9]+s" | ||
| +#' @field rule_act list of character vectors. Each element in the list should contain the activating gene variables for a particular target gene. | ||
| +#' @field rule_inh list of character vectors. Each element in the list should contain the inhibiting gene variables for a particular target gene. | ||
| +#' | ||
| +#' @export BoolModel | ||
| +#' @exportClass BoolModel | ||
| +BoolModel = setClass('BoolModel', | ||
| + slots=c(target='character', target_var='character', | ||
| + rule_act='list', rule_inh='list') | ||
| + ) | ||
| + |
| @@ -1,19 +1,19 @@ | ||
| -#' @title BTR: A package for studying asynchronous Boolean models | ||
| -#' | ||
| -#' @description | ||
| -#' This package contains tools for Boolean model manipulation, as well as the search for the best Boolean model. | ||
| -#' | ||
| -#' @docType package | ||
| -#' @name BTR | ||
| -NULL | ||
| - | ||
| -## All the Roxygen codes below are for generating the correct NAMESPACE file. | ||
| -#' @import methods | ||
| -#' @import parallel | ||
| -#' @import foreach | ||
| -#' @import doParallel | ||
| -NULL | ||
| - | ||
| -#' @useDynLib BTR | ||
| -#' @importFrom Rcpp sourceCpp evalCpp | ||
| +#' @title BTR: A package for studying asynchronous Boolean models | ||
| +#' | ||
| +#' @description | ||
| +#' This package contains tools for Boolean model manipulation, as well as the search for the best Boolean model. | ||
| +#' | ||
| +#' @docType package | ||
| +#' @name BTR | ||
| +NULL | ||
| + | ||
| +## All the Roxygen codes below are for generating the correct NAMESPACE file. | ||
| +#' @import methods | ||
| +#' @import parallel | ||
| +#' @import foreach | ||
| +#' @import doParallel | ||
| +NULL | ||
| + | ||
| +#' @useDynLib BTR | ||
| +#' @importFrom Rcpp sourceCpp evalCpp | ||
| NULL |
Oops, something went wrong.
0 comments on commit
7dae6d4