https://github.com/jedick/canprot
Raw File
Tip revision: f238d0f107d9a21c15e73e3f8a81062211424168 authored by jedick on 14 June 2017, 19:52:51 UTC
Sumbit version 0.1.0 to CRAN
Tip revision: f238d0f
README.md
# canprot

Datasets are collected here for differentially (up- and down-)
expressed proteins identified in proteomic studies of cancer and in cell
culture experiments. Tables of amino acid compositions of proteins are
used for calculations of chemical composition, projected into selected
basis species. Plotting functions are used to visualize the compositional
differences and thermodynamic potentials for proteomic transformations.

This package has been developed to support a research project that has been
reported in two papers in *PeerJ* ([2016](http://doi.org/10.7717/peerj.2238)
and [2017](http://doi.org/10.7717/peerj.3421)).

The manual (help pages) and vignettes can be viewed at
<http://chnosz.net/canprot/html/00Index.html>.

## Installation from CRAN

```R
install.packages("canprot")
```

## Installation from Github

First install the **devtools** package from CRAN:

```R
install.packages("devtools")
```

Then install **canprot** from Github:

```R
devtools::install_github("jedick/canprot")
```

## Building vignettes

To install the package including the vignettes:

```R
devtools::install_github("jedick/canprot", build_vignettes = TRUE)
```

You may need to re-run this command one or more times. Note that this pulls in
more R packages as dependencies, and [pandoc](http://pandoc.org/installing.html)
is also required.
back to top