Permalink
Browse files

Changes for revision round.

  • Loading branch information...
1 parent bb394a9 commit 7dae6d4798cc097e6c503062d65c0774b39582a7 @cheeyeelim committed Mar 15, 2016
Showing with 2,648 additions and 2,540 deletions.
  1. +31 −29 DESCRIPTION
  2. +1 −1 NAMESPACE
  3. +17 −17 R/boolmodel_class.R
  4. +18 −18 R/btr.R
  5. +342 −323 R/compression.R
  6. +136 −136 R/data_desc.R
  7. +477 −457 R/general.R
  8. +188 −179 R/initialisation.R
  9. +339 −339 R/methods.R
  10. +87 −15 R/model_modification.R
  11. +466 −409 R/rand_model.R
  12. +53 −76 R/score_calculation.R
  13. +234 −223 R/search.R
  14. BIN data/example_models.rda
  15. +1 −1 man/BTR.Rd
  16. +1 −1 man/BoolModel-class.Rd
  17. +1 −1 man/amat_to_bm.Rd
  18. +1 −1 man/bm_to_amat.Rd
  19. +1 −1 man/bm_to_df.Rd
  20. +2 −2 man/bon_bmodel.Rd
  21. +2 −2 man/bon_istate.Rd
  22. +7 −2 man/calc_mscore.Rd
  23. +1 −1 man/calc_roc.Rd
  24. +1 −1 man/check_and.Rd
  25. +3 −5 man/compress_bmodel.Rd
  26. +3 −5 man/decompress_bmodel.Rd
  27. +1 −1 man/decreate_boolmodel.Rd
  28. +1 −1 man/df_to_bm.Rd
  29. +1 −1 man/emodel1.Rd
  30. +1 −1 man/emodel2.Rd
  31. +1 −1 man/emodel3.Rd
  32. +1 −1 man/eval_bool.Rd
  33. +1 −1 man/extract_term.Rd
  34. +1 −1 man/filter_dflist.Rd
  35. +8 −3 man/gen_one_rmodel.Rd
  36. +5 −2 man/gen_singlerule.Rd
  37. +5 −5 man/gen_two_rmodel.Rd
  38. +2 −2 man/gen_two_rmodel_dag.Rd
  39. +4 −2 man/get_encodings.Rd
  40. +1 −1 man/grow_bmodel.Rd
  41. +1 −1 man/initialise_data.Rd
  42. +1 −1 man/initialise_model.Rd
  43. +6 −3 man/initialise_raw_data.Rd
  44. +2 −2 man/krum_bmodel.Rd
  45. +2 −2 man/krum_istate.Rd
  46. +1 −1 man/man_dist.Rd
  47. +1 −1 man/match_term.Rd
  48. +10 −2 man/minmod_internal.Rd
  49. +13 −2 man/minmod_model.Rd
  50. +3 −3 man/model_consensus.Rd
  51. +2 −4 man/model_dist.Rd
  52. +2 −4 man/model_setdiff.Rd
  53. +6 −8 man/model_train.Rd
  54. +1 −1 man/outgenysis_model.Rd
  55. +1 −1 man/outgraph_model.Rd
  56. +1 −1 man/outstate_graph.Rd
  57. +1 −1 man/plotBM.Rd
  58. +1 −1 man/printBM.Rd
  59. +1 −1 man/rcpp_simulate.Rd
  60. +1 −1 man/rcpp_validate.Rd
  61. +1 −1 man/simulate_model.Rd
  62. +1 −1 man/unique_raw_data.Rd
  63. +1 −1 man/validate_adjmat.Rd
  64. +1 −1 man/vcat.Rd
  65. +1 −1 man/which.random.min.Rd
  66. +2 −2 man/wilson_raw_data.Rd
  67. +2 −2 man/wilson_raw_rnaseq.Rd
  68. +1 −1 man/writeBM.Rd
  69. +12 −35 vignettes/btr.Rmd
  70. +81 −122 vignettes/btr.html
  71. +42 −64 vignettes/btr.md
  72. BIN vignettes/btr.pdf
  73. BIN vignettes/btr_files/figure-markdown_github/unnamed-chunk-17-1.png
  74. BIN vignettes/btr_files/figure-markdown_github/unnamed-chunk-23-1.png
  75. BIN vignettes/btr_files/figure-markdown_github/unnamed-chunk-31-1.png
View
@@ -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
View
@@ -1,4 +1,4 @@
-# Generated by roxygen2 (4.1.1): do not edit by hand
+# Generated by roxygen2: do not edit by hand
export(BoolModel)
export(amat_to_bm)
View
@@ -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')
+ )
+
View
36 R/btr.R
@@ -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

Please sign in to comment.