Skip to content

Commit

Permalink
Website update to have both vignettes?
Browse files Browse the repository at this point in the history
  • Loading branch information
fbertran committed May 3, 2019
1 parent e24c6d2 commit b2bb20e
Show file tree
Hide file tree
Showing 301 changed files with 113 additions and 1,192 deletions.
Binary file modified .DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions .Rbuildignore
Expand Up @@ -8,6 +8,10 @@
#For the cached chunks of README.Rmd
^cache*$
^README_cache*$
#For the cached chunks of the vignettes
^vignettes.*cache$
#For the image outputs of the vignettes
^vignettes.*files$
#If README too big, not on CRAN but only on git
^man/figures*$
^README\.Rmd$
Expand Down
1 change: 0 additions & 1 deletion Patterns.Rproj
Expand Up @@ -15,7 +15,6 @@ LaTeX: pdfLaTeX
BuildType: Package
PackageUseDevtools: Yes
PackageInstallArgs: --no-multiarch --with-keep.source
PackageBuildBinaryArgs: --no-build-vignettes
PackageCheckArgs: --as-cran

QuitChildProcessesOnExit: Yes
18 changes: 10 additions & 8 deletions README.Rmd
Expand Up @@ -28,15 +28,17 @@ It allows for **single** or **joint modeling** of, for instance, genes and prote

* It starts with the **selection of the actors** that will be the used in the reverse engineering upcoming step. An actor can be included in that selection based on its **differential effects** (for instance gene expression or protein abundance) or on its **time course profile**.
* Wrappers for **actors clustering** functions and cluster analysis are provided.
* It also allows **reverse engineering** of biological networks taking into account the observed time course patterns of the actors. Many **inference functions** are provided with the `Patterns` package and dedicated to get **specific features** for the inferred network such as **sparsity**, **robust links**, **high confidence links** or **stable through resampling links**.
+ **LASSO**, from the `lars` package
+ **LASSO2**, from the `glmnet` package. An unweighted and a weighted version of the algorithm are available
+ **SPLS**, from the `spls` package
+ **ELASTICNET**, from the `elasticnet` package
+ **stability.c060**, from the `c060` package implementation of stability selection
+ **stability.c060.weighted**, a new weighted version of the `c060` package implementation of stability selection
* It also allows **reverse engineering** of biological networks taking into account the observed time course patterns of the actors. Interactions between clusters of actors can be set by the user. Any number of clusters can be activated at a single time.
* Many **inference functions** are provided with the `Patterns` package and dedicated to get **specific features** for the inferred network such as **sparsity**, **robust links**, **high confidence links** or **stable through resampling links**.
+ **lasso**, from the `lars` package
+ **lasso**, from the `glmnet` package. An unweighted and a weighted version of the algorithm are available
+ **spls**, from the `spls` package
+ **elasticnet**, from the `elasticnet` package
+ **stability selection**, from the `c060` package implementation of stability selection
+ **weighted stability selection**, a new weighted version of the `c060` package implementation of stability selection that I created for the package
+ **robust**, lasso from the `lars` package with light random Gaussian noise added to the explanatory variables
+ **selectboost.weighted**, a new weighted version of the `selectboost` package implementation of the selectboost algorithm to look for the more stable links against resampling that takes into account the correlated structure of the predictors. If no weights are provided, equal weigths are for all the variables (=non weighted case).
+ **selectboost**, from the `selectboost` package. The selectboost algorithm looks for the more stable links against resampling that takes into account the correlated structure of the predictors
+ **weighted selectboost**, a new weighted version of the `selectboost`.
* Some **simulation** and **prediction** tools are also available for cascade networks.
* Examples of use with microarray or RNA-Seq data are provided.

Expand Down
18 changes: 10 additions & 8 deletions README.md
Expand Up @@ -19,15 +19,17 @@ It allows for **single** or **joint modeling** of, for instance, genes and prote

* It starts with the **selection of the actors** that will be the used in the reverse engineering upcoming step. An actor can be included in that selection based on its **differential effects** (for instance gene expression or protein abundance) or on its **time course profile**.
* Wrappers for **actors clustering** functions and cluster analysis are provided.
* It also allows **reverse engineering** of biological networks taking into account the observed time course patterns of the actors. Many **inference functions** are provided with the `Patterns` package and dedicated to get **specific features** for the inferred network such as **sparsity**, **robust links**, **high confidence links** or **stable through resampling links**.
+ **LASSO**, from the `lars` package
+ **LASSO2**, from the `glmnet` package. An unweighted and a weighted version of the algorithm are available
+ **SPLS**, from the `spls` package
+ **ELASTICNET**, from the `elasticnet` package
+ **stability.c060**, from the `c060` package implementation of stability selection
+ **stability.c060.weighted**, a new weighted version of the `c060` package implementation of stability selection
* It also allows **reverse engineering** of biological networks taking into account the observed time course patterns of the actors. Interactions between clusters of actors can be set by the user. Any number of clusters can be activated at a single time.
* Many **inference functions** are provided with the `Patterns` package and dedicated to get **specific features** for the inferred network such as **sparsity**, **robust links**, **high confidence links** or **stable through resampling links**.
+ **lasso**, from the `lars` package
+ **lasso**, from the `glmnet` package. An unweighted and a weighted version of the algorithm are available
+ **spls**, from the `spls` package
+ **elasticnet**, from the `elasticnet` package
+ **stability selection**, from the `c060` package implementation of stability selection
+ **weighted stability selection**, a new weighted version of the `c060` package implementation of stability selection that I created for the package
+ **robust**, lasso from the `lars` package with light random Gaussian noise added to the explanatory variables
+ **selectboost.weighted**, a new weighted version of the `selectboost` package implementation of the selectboost algorithm to look for the more stable links against resampling that takes into account the correlated structure of the predictors. If no weights are provided, equal weigths are for all the variables (=non weighted case).
+ **selectboost**, from the `selectboost` package. The selectboost algorithm looks for the more stable links against resampling that takes into account the correlated structure of the predictors
+ **weighted selectboost**, a new weighted version of the `selectboost`.
* Some **simulation** and **prediction** tools are also available for cascade networks.
* Examples of use with microarray or RNA-Seq data are provided.

Expand Down

0 comments on commit b2bb20e

Please sign in to comment.