Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/drostlab/seqstats

Biological Sequence Statistics in R
https://github.com/drostlab/seqstats

bioinformatics biological-data-analysis biological-sequence-statistics biological-sequences genomics

Last synced: 7 days ago
JSON representation

Biological Sequence Statistics in R

Awesome Lists containing this project

README

        

seqstats
========

## Biological Sequence Statistics in R

The `seqstats` package provides a comprehensive framework for biological sequence statistics to allow researchers to design null hypotheses and random controls when performing exploratory genomics studies.

## Install

```r
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install()
# install package dependencies
BiocManager::install("Biostrings")
# install.packages("devtools")
# install the current version of seqstats to your system
devtools::install_github("HajkD/seqstats", build_vignettes = TRUE, dependencies = TRUE)
```

## Tutorials

The following tutorials will introduce you to the functionality of `seqstats` :

- [Sequence Statistics](https://drostlab.github.io/seqstats/articles/Statistics.html)

## Install on Windows

```r
# On Windows, this won't work - see ?build_github_devtools
install_github("HajkD/seqstats", build_vignettes = TRUE, dependencies = TRUE)

# When working with Windows, first you need to install the
# R package: rtools -> install.packages("rtools")

# Afterwards you can install devtools -> install.packages("devtools")
# and then you can run:

devtools::install_github("HajkD/seqstats", build_vignettes = TRUE, dependencies = TRUE)

# and then call it from the library
library("seqstats", lib.loc = "C:/Program Files/R/R-3.1.1/library")
```