Skip to content

Repository files navigation

hybkit

GitHub release (latest by date including pre-releases)PyPI Package VersionBioconda ReleaseHybkit Downloads on BiocondaDocker Image VersionCircle-CI Build StatusDocumentation StatusCoveralls CoveragePyPI - Python VersionManuscript DOI, Journal BioinformaticsGNU GPLv3+ License
Welcome to hybkit, a toolkit for analysis of hyb-format chimeric (hybrid) RNA sequence data defined with the Hyb software package by Travis et al. (Methods 2014). This genomic data-type is generated from RNA proximity-ligation and ribonomics techniques such as Crosslinking, Ligation, and Sequencing of Hybrids (CLASH; Helwak et al. (Cell 2013)) and quick CLASH (qCLASH; Gay et al. (J. Virol. 2018)).
This software is available via Github, at http://www.github.com/RenneLab/hybkit .
Full project documentation is available at hybkit's ReadTheDocs.
Project components:
  1. hybkit toolkit of command-line utilities for manipulating, analyzing, and plotting hyb-format data.
  2. The hybkit python API, an extendable documented codebase for creation of custom analyses of hyb-format data.
  3. Integrated analysis of predicted secondary structure (fold) information for the API and command-line utilities.
  4. Example analyses for publicly available qCLASH hybrid sequence data implemented in each of the command-line scripts and hybkit Python API.
Hybkit Toolkit:

The hybkit toolkit includes several command-line utilities for manipulation of hyb-format data:

UtilityDescription
hyb_checkParse hyb (and fold) files and check for errors
hyb_evalEvaluate hyb (and fold) records to identify / assign segment types and miRNAs using custom criteria
hyb_filterFilter hyb (and fold) records to a specific custom subset
hyb_analyzePerform an energy, type, miRNA, target, or fold analysis on hyb (and fold) files and plot results

These scripts are used on the command line with hyb (and associated "vienna" or "CT") files. For example, to filter a hyb and corresponding vienna file to contain only hybrids with a sequence identifier containing the string "kshv":

Example:

$ hyb_filter -i my_hyb_file.hyb -f my_hyb_file.vienna --filter any_seg_contains kshv

Further detail on the usage of each script is provided in the hybkit Toolkit section of hybkit's ReadTheDocs.

Hybkit API:

Hybkit provides a Python3 module with a documented API for interacting with records in hyb files and associated vienna or CT files. This capability was inspired by the BioPython Project. The primary utility is provided by a class for hyb records (HybRecord), a class for fold records (FoldRecord), and file-iterator classes (HybFile, ViennaFile, CTFile, HybFoldIter). Record attributes can be analyzed, set, and evaluated using included class methods.

For example, a workflow to print the identifiers of only sequences within a ".hyb" file that contain a miRNA can be performed as such:

#!/usr/bin/env python3importhybkitin_file='/path/to/my_hyb_file.hyb'# Open a hyb file as a HybFile Object:withhybkit.HybFile.open(in_file, 'r') ashyb_file:
# Return each line in a hyb file as a HybRecord objectforhyb_recordinhyb_file:
# Analyze each record to assign segment typeshyb_record.eval_types()
# If the record contains a long noncoding RNA type, print the record identifier.ifhyb_record.has_prop('any_seg_type_contains', 'lncRNA')
print(hyb_record.id)

Further documentation on the hybkit API can be found in the hybkit API section of hybkit's ReadTheDocs.

Example Analyses:

Hybkit provides several example analyses for hyb data using the utilities provided in the toolkit. These include:

AnalysisDescription
Type/miRNA AnalysisQuantify sequence types and miRNA types in a hyb file
Target AnalysisAnalyze targets of a set of miRNAs from a single experimental replicate
Grouped Target AnalysisAnalyze and plot targets of a set of miRNAs from pooled experimental replicates
Fold AnalysisAnalyze and plot predicted miRNA folding patterns in miRNA-containing hybrids

These analyses provide analysis results in both tabular and graph form. As an illustration, the example summary analysis includes the return of the contained hybrid sequence types as both a csv table and as a pie chart:

CSV Output

example_01_image

Further detail on each provided analysis can be found in the Example Analyses section of hybkit's ReadTheDocs.

Installation:
Dependencies:
Via PyPI / Python PIP:

PyPI Package Version

The recommended installation method is via hybkit's PyPI Package Index using python3 pip, which will automatically handle version control and dependency installation:

$ python3 -m pip install hybkit
Via Conda:

Bioconda ReleaseInstall with Bioconda

For users of conda, the hybkit package and dependencies are hosted on the the Bioconda channel, and can be installed using conda:

$ conda install -c bioconda hybkit
Via Docker/Singularity:

Docker Image Version

The hybkit package is also available as a Docker image and Singularity container, hosted via the BioContainers project on quay.io. To pull the image via docker:

$ docker pull quay.io/biocontainers/hybkit:0.3.3--pyhdfd78af_0

To pull the image via singularity:

$ singularity pull docker://quay.io/biocontainers/hybkit:0.3.3--pyhdfd78af_0
Manually Download and Install:

GitHub release (latest by date including pre-releases)

Use git to clone the project's Github repository:

$ git clone git://github.com/RenneLab/hybkit

OR download the zipped package:

$ curl -OL https://github.com/RenneLab/hybkit/archive/master.zip
$ unzip master.zip

Then install using python setuptools:

$ python setup.py install

Further documentation on hybkit usage can be found in hybkit's ReadTheDocs.

Setup Testing:

Hybkit provides a suite of unit tests to maintain stability of the API and script functionalities. To run the API test suite, install pytest and run the tests from the root directory of the hybkit package:

$ pip install pytest
$ pytest

Command-line scripts can be tested by running the auto_test.sh script in the auto_tests directory:

$ ./auto_tests/auto_test.sh
Copyright:
hybkit is a free, sharable, open-source project.
All source code and executable scripts contained within this package are considered part of the "hybkit" project and are distributed without any warranty or implied warranty under the GNU General Public License v3.0 or any later version, described in the "LICENSE" file.

About

Toolkit for analysis of ".hyb" format nucleotide sequence data from chimeric RNA experiments.

Topics

Resources

Stars

8 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages