Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add links to docs website in README #80

Merged
merged 1 commit into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/auto-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ jobs:
shell: Rscript {0}
run: |
rmarkdown::render("README.Rmd")
if (file.exists("README.html")) file.remove("README.html")

- name: update CITATION.cff
shell: Rscript {0}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ docs
inst/doc
/doc/
/Meta/
/README.html
13 changes: 11 additions & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,31 @@ R package for downstream multi-omics analysis

Designed for differential [RNA-seq](https://github.com/CCBR/RENEE) analysis
or any data represented in a counts table.
See the website for more information, documentation, and examples:
<https://ccbr.github.io/MOSuite/>

## Installation

You can install the development version of MOSuite from [GitHub](https://github.com/) with:
You can install the development version of MOSuite from [GitHub](https://github.com/CCBR/MOSuite) with:

```r
# install.packages("devtools")
devtools::install_github("CCBR/MOSuite")
```

## Usage

Please see the [introductory vignette](https://ccbr.github.io/MOSuite/articles/intro.html)
for a quick start tutorial.
Take a look at the [reference documentation](https://ccbr.github.io/MOSuite/reference/index.html)
for detailed information on each function in the package.

<!--
## Example

TODO: This is a basic example which shows you how to solve a common problem:

```{r example}
```{r example, message=FALSE, warning=FALSE}
library(MOSuite)
## basic example code
```
Expand Down
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,34 @@
R package for downstream multi-omics analysis

Designed for differential [RNA-seq](https://github.com/CCBR/RENEE)
analysis or any data represented in a counts table.
analysis or any data represented in a counts table. See the website for
more information, documentation, and examples:
<https://ccbr.github.io/MOSuite/>

## Installation

You can install the development version of MOSuite from
[GitHub](https://github.com/) with:
[GitHub](https://github.com/CCBR/MOSuite) with:

``` r
# install.packages("devtools")
devtools::install_github("CCBR/MOSuite")
```

## Usage

Please see the [introductory
vignette](https://ccbr.github.io/MOSuite/articles/intro.html) for a
quick start tutorial. Take a look at the [reference
documentation](https://ccbr.github.io/MOSuite/reference/index.html) for
detailed information on each function in the package.

<!--
## Example
&#10;TODO: This is a basic example which shows you how to solve a common problem:
&#10;
``` r
library(MOSuite)
#> Warning: replacing previous import 'S4Arrays::makeNindexFromArrayViewport' by
#> 'DelayedArray::makeNindexFromArrayViewport' when loading 'SummarizedExperiment'
## basic example code
```
-->
Expand Down
Loading