Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/csoneson/rhisat2

R interface to the hisat2 aligner
https://github.com/csoneson/rhisat2

Last synced: 1 day ago
JSON representation

R interface to the hisat2 aligner

Awesome Lists containing this project

README

        

## Rhisat2
[![Build Status](https://travis-ci.com/csoneson/Rhisat2.svg?branch=master)](https://travis-ci.com/csoneson/Rhisat2)
[![AppVeyor build status](https://ci.appveyor.com/api/projects/status/github/csoneson/Rhisat2?branch=master&svg=true)](https://ci.appveyor.com/project/csoneson/Rhisat2)
[![Code coverage](https://codecov.io/github/csoneson/Rhisat2/coverage.svg?branch=master)](https://codecov.io/github/csoneson/Rhisat2)

The `Rhisat2` R package provides an R interface to the [`hisat2`](https://ccb.jhu.edu/software/hisat2/index.shtml) spliced short-read aligner by [Kim et al. (2015)](https://www.nature.com/articles/nmeth.3317). The package contains wrapper functions to create a genome index and to perform the read alignment to the generated index.

### Source code
The source code for hisat2 v2.1.0 was obtained from [https://ccb.jhu.edu/software/hisat2/index.shtml](https://ccb.jhu.edu/software/hisat2/index.shtml) on October 17, 2018.

Based on the discussion at [https://github.com/BenLangmead/bowtie2/issues/81](https://github.com/BenLangmead/bowtie2/issues/81), the following small modification was made to allow compilation:

In the file `src/aligner_result.cpp`, line 1267

flag > 0

was replaced by

flag[0] != '\0'