--[Useful functions in BTR](#useful-functions-in-BTR)
--[Example workflows](#example-workflows)
- -[Inferring model without an initial model](#inferring-model-without-an-initial-model)
- -[Full workflow](#full-workflow)
- -[Initial setup](#initial-setup)
- -[Data preparation](#data-preparation)
- -[Run model training](#run-model-training)
- -[Inferring model with an initial model](#inferring-model-with-an-initial-model)
- -[Full workflow](#full-workflow-1)
- -[Initial setup](#initial-setup-1)
- -[Data preparation](#data-preparation-1)
- -[Run model training](#run-model-training-1)
- -[Extending model with more genes](#extending-model-with-more-genes)
- -[Full workflow](#full-workflow-2)
- -[Initial setup](#initial-setup-2)
- -[Data preparation](#data-preparation-2)
- -[Add extra genes to the initial Boolean model](#add-extra-genes-to-the-initial-boolean-model)
- -[Estimate initial state for the extra genes](#estimate-initial-state-for-the-extra-genes)
- -[Run model training](#run-model-training-2)
+- Brief introduction
+- Installation
+- Input data format
+- Output format
+- Useful functions in BTR
+- Example workflows
+ - Inferring model without an initial model
+ - Full workflow
+ - Initial setup
+ - Data preparation
+ - Run model training
+ - Inferring model with an initial model
+ - Full workflow
+ - Initial setup
+ - Data preparation
+ - Run model training
+ - Extending model with more genes
+ - Full workflow
+ - Initial setup
+ - Data preparation
+ - Add extra genes to the initial Boolean model
+ - Estimate initial state for the extra genes
+ - Run model training
<!---
rmarkdown::pdf_document:
@@ -138,7 +138,7 @@ BTR can also output a state transition graph.
-`outstate_graph` - Outputs a state space of a Boolean model simulated with an initial state. This format is readable by both Cytoscape and Gephi.
Useful functions in BTR
-===============================
+=======================
Besides training Boolean models, BTR can be used for simulating a Boolean model asynchronously and calculate the score of a Boolean model with respect to a data.
@@ -176,24 +176,19 @@ library(BTR)
# (2) Load data.
data(wilson_raw_data) #load a data frame of expression data.
Once data is loaded and preprocessed, filter the cell types or genes to be included in the analysis if needed. It is advisable to reduce the number of genes to be included if the computation takes too long to complete.
@@ -237,12 +230,10 @@ Once data is loaded and preprocessed, filter the cell types or genes to be inclu
Once data are loaded and preprocessed, filter the cell types or genes to be included in the analysis if needed. It is advisable to reduce the number of genes to be included if the computation takes too long to complete. In this example, genes are not filtered as all genes that are present in both expression data and Boolean model are used automatically.
@@ -353,7 +338,6 @@ Once data are loaded and preprocessed, filter the cell types or genes to be incl
Once data are loaded and preprocessed, filter the cell types or genes to be included in the analysis if needed. It is advisable to reduce the number of genes to be included if the computation takes too long to complete. In this example, genes are not filtered as all genes that are present in both expression data and Boolean model are used automatically.
@@ -479,7 +458,6 @@ Once data are loaded and preprocessed, filter the cell types or genes to be incl
0 comments on commit
0e17828