Skip to content

Commit

Permalink
Updated Readme, Installation guide and some fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arvindiyer committed Aug 23, 2024
1 parent 2e4dd3b commit 37099d6
Show file tree
Hide file tree
Showing 12 changed files with 512 additions and 16 deletions.
31 changes: 30 additions & 1 deletion INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,33 @@
devtools::install_github("CSOgroup/SelectSim",dependencies = TRUE, build_vignettes = TRUE)
```

## Installation with micromamba enviorment
## Installation with micromamba enviorment


`micromamba` is a tiny version of the mamba package manager (Like Conda). Refer [website](https://mamba.readthedocs.io/en/latest/installation/micromamba-installation.html) for it's installation guide.

Steps to follow after installing micromamba in a terminal:

`micromamba create -n r_env r-essentials r-base`
`micromamba activate r_env`
`micromamba install conda-forge::r-devtools`
`micromamba install conda-forge::armadillo`
`micromamba install conda-forge::r-rcppparallel`
`micromamba install conda-forge::r-rfast`

- After this run R and install `SelectSim` R package as follows
``` r
# install.packages("devtools")
devtools::install_github("CSOgroup/SelectSim",dependencies = TRUE, build_vignettes = TRUE)
```

Alternative way install with provided `enviorment.yml` file.

`micromamba create -f env.yml`
`micromamba activate r_env`
- After this run R and install `SelectSim` R package as follows
``` r
# install.packages("devtools")
devtools::install_github("CSOgroup/SelectSim",dependencies = TRUE, build_vignettes = TRUE)
```

5 changes: 3 additions & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ knitr::opts_chunk$set(
<!-- badges: start -->
<!-- badges: end -->

The goal of SelectSim is to implement the methodology to infer inter-dependencies between functional alterations in cancer.
The goal of SelectSim package is to implement the methodology to infer inter-dependencies between functional alterations in cancer. SelectSim estimates the expected number of mutations in a given gene and a given sample from the mutation frequency of the gene, f(g), and the tumor mutation burden (TMB) of the sample, $\mu$(t). These values can be estimated within specific mutation and tumor subsets, to account for heterogeneous tumor types, tissue specificities, and distinct mutational processes

![SelectSim Method](SelectSim_method.png)

## Installation

Expand All @@ -34,7 +35,7 @@ devtools::install_github("CSOgroup/SelectSim",dependencies = TRUE, build_vignett

## Example

Check the the vignettes folder.
Check the the Vignettes folder or visit [website](https://csogroup.github.io/SelectSim/)

### Who do I talk to? ###

Expand Down
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,19 @@
<!-- badges: start -->
<!-- badges: end -->

The goal of SelectSim is to implement the methodology to infer
inter-dependencies between functional alterations in cancer.
The goal of SelectSim package is to implement the methodology to infer
inter-dependencies between functional alterations in cancer. SelectSim
estimates the expected number of mutations in a given gene and a given
sample from the mutation frequency of the gene, f(g), and the tumor
mutation burden (TMB) of the sample, $\mu$(t). These values can be
estimated within specific mutation and tumor subsets, to account for
heterogeneous tumor types, tissue specificities, and distinct mutational
processes

<figure>
<img src="SelectSim_method.png" alt="SelectSim Method" />
<figcaption aria-hidden="true">SelectSim Method</figcaption>
</figure>

## Installation

Expand All @@ -24,7 +35,8 @@ devtools::install_github("CSOgroup/SelectSim",dependencies = TRUE, build_vignett

## Example

Check the the vignettes folder.
Check the the Vignettes folder or visit
[website](https://csogroup.github.io/SelectSim/)

### Who do I talk to?

Expand Down
Binary file added SelectSim_method.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions docs/INSTALLATION.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/articles/data_processing.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/introduction.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pkgdown_sha: ~
articles:
data_processing: data_processing.html
introduction: introduction.html
last_built: 2024-08-23T09:02Z
last_built: 2024-08-23T11:08Z
urls:
reference: https://csogroup.github.io/SelectSim/reference
article: https://csogroup.github.io/SelectSim/articles
Expand Down
2 changes: 1 addition & 1 deletion docs/search.json

Large diffs are not rendered by default.

Loading

0 comments on commit 37099d6

Please sign in to comment.