Permalink
Please sign in to comment.
Showing
with
153 additions
and 1,255 deletions.
- +1 −1 DESCRIPTION
- +2 −2 NAMESPACE
- +2 −2 R/RcppExports.R
- +19 −0 R/btr.R
- +21 −21 README.md
- +11 −0 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
- +1 −1 man/calc_mscore.Rd
- +1 −1 man/calc_roc.Rd
- +1 −1 man/check_and.Rd
- +2 −2 man/compress_bmodel.Rd
- +2 −2 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
- +1 −1 man/gen_one_rmodel.Rd
- +1 −1 man/gen_singlerule.Rd
- +2 −2 man/gen_two_rmodel.Rd
- +2 −2 man/gen_two_rmodel_dag.Rd
- +1 −1 man/get_encodings.Rd
- +1 −1 man/grow_bmodel.Rd
- +1 −1 man/initialise_data.Rd
- +1 −1 man/initialise_model.Rd
- +1 −1 man/initialise_raw_data.Rd
- +2 −2 man/krum_bmodel.Rd
- +2 −2 man/krum_istate.Rd
- +1 −1 man/m_score.Rd
- +1 −1 man/man_dist.Rd
- +1 −1 man/match_term.Rd
- +1 −1 man/minmod_internal.Rd
- +1 −1 man/minmod_model.Rd
- +1 −1 man/model_consensus.Rd
- +1 −1 man/model_dist.Rd
- +1 −1 man/model_setdiff.Rd
- +3 −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
- +2 −2 src/RcppExports.cpp
- +0 −604 vignettes/booltrainer.html
- +0 −529 vignettes/booltrainer.md
- BIN vignettes/booltrainer.pdf
- BIN vignettes/booltrainer_files/figure-markdown_github/unnamed-chunk-15-1.png
- BIN vignettes/booltrainer_files/figure-markdown_github/unnamed-chunk-17-1.png
- BIN vignettes/booltrainer_files/figure-markdown_github/unnamed-chunk-21-1.png
- BIN vignettes/booltrainer_files/figure-markdown_github/unnamed-chunk-23-1.png
- BIN vignettes/booltrainer_files/figure-markdown_github/unnamed-chunk-29-1.png
- BIN vignettes/booltrainer_files/figure-markdown_github/unnamed-chunk-31-1.png
- +29 −23 vignettes/{booltrainer.Rmd → btr.Rmd}
| @@ -0,0 +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 | ||
| +NULL |
11
man/BTR.Rd
| @@ -0,0 +1,11 @@ | ||
| +% Generated by roxygen2 (4.1.1): do not edit by hand | ||
| +% Please edit documentation in R/btr.R | ||
| +\docType{package} | ||
| +\name{BTR} | ||
| +\alias{BTR} | ||
| +\alias{BTR-package} | ||
| +\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. | ||
| +} | ||
| + |
Oops, something went wrong.
0 comments on commit
176dabf