Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/michbur/amylogram

Prediction of amyloid proteins
https://github.com/michbur/amylogram

Last synced: 9 days ago
JSON representation

Prediction of amyloid proteins

Awesome Lists containing this project

README

        

[![published in: Scientific Reports](https://img.shields.io/badge/published%20in-Scientific%20Reports-green.svg)](https://doi.org/10.1038/s41598-017-13210-9)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/AmyloGram)](https://cran.r-project.org/package=AmyloGram)
[![Downloads](http://cranlogs.r-pkg.org/badges/AmyloGram)](https://cran.r-project.org/package=AmyloGram)
[![Build Status](https://api.travis-ci.org/michbur/AmyloGram.png)](https://travis-ci.org/michbur/AmyloGram)

AmyloGram

Predict amyloid proteins
-------------------------

AmyloGram predicts amyloid proteins using n-gram encoding and random forests. It can be also accessed as a web-based service http://www.smorfland.uni.wroc.pl/shiny/AmyloGram/.

Local instance of AmyloGram
------------------------
AmyloGram can be used installed from CRAN as the R package:

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

You can install the latest development version of the package:

```R
source("https://raw.githubusercontent.com/r-lib/remotes/master/install-github.R")$value("michbur/AmyloGram")
```

After installation GUI can be accessed locally:

```R
library(AmyloGram)
AmyloGram_gui()
```

Predictions might be also made in the batch mode:

```R
data(AmyloGram_model)
data(pep424)
predict(AmyloGram_model, pep424[1L:20])
```