Skip to main content

CONCISE (COnvolutional Neural for CIS-regulatory Elements) is a model for predicting PTR features like mRNA half-life from cis-regulatory elements using deep learning.

Project description

CONCISE

https://img.shields.io/pypi/v/concise.svg https://img.shields.io/pypi/pyversions/Concise.svg https://api.travis-ci.org/Avsecz/concise.svg Documentation Status

CONCISE (COnvolutional neural Network for CIS-regulatory Elements) is a model for predicting any quatitative outcome (say mRNA half-life) from cis-regulatory sequence using deep learning.

https://github.com/Avsecz/concise/blob/master/concise-figure1.png

Features

  • Very simple API

  • Serializing the model to JSON - allows to analyze the results in any langugage of choice

  • Helper function for hyper-parameter random search

  • CONCISE uses TensorFlow at its core and is hence able of using GPU computing

Installation

After installing the following prerequisites:

  1. Python (3.4 or 3.5) with pip (see Python installation guide and pip documentation)

  2. TensorFlow python package (see TensorFlow installation guide or Installing Tensorflow on AWS GPU-instance)

install CONCISE using pip:

pip install concise

Getting Started

import pandas as pd
import concise

# read-in and prepare the data
dt = pd.read_csv("./data/pombe_half-life_UTR3.csv")

X_feat, X_seq, y, id_vec = concise.prepare_data(dt,
                                                features=["UTR3_length", "UTR5_length"],
                                                response="hlt",
                                                sequence="seq",
                                                id_column="ID",
                                                seq_align="end",
                                                trim_seq_len=500,
                                              )

######
# Train CONCISE
######

# initialize CONCISE
co = concise.Concise(motif_length = 9, n_motifs = 2,
                     init_motifs = ("TATTTAT", "TTAATGA"))

# train:
# - on a GPU if tensorflow is compiled with GPU support
# - on a CPU with 5 cores otherwise
co.train(X_feat[500:], X_seq[500:], y[500:], n_cores = 5)

# predict
co.predict(X_feat[:500], X_seq[:500])

# get fitted weights
co.get_weights()

# save/load from a file
co.save("./Concise.json")
co2 = Concise.load("./Concise.json")

######
# Train CONCISE in 5-fold cross-validation
######

# intialize
co3 = concise.Concise(motif_length = 9, n_motifs = 2,
                      init_motifs = ("TATTTAT", "TTAATGA"))

cocv = concise.ConciseCV(concise_object = co3)

# train
cocv.train(X_feat, X_seq, y, id_vec,
           n_folds=5, n_cores=3, train_global_model=True)

# out-of-fold prediction
cocv.get_CV_prediction()

# save/load from a file
cocv.save("./Concise.json")
cocv2 = ConciseCV.load("./Concise.json")

Where to go from here:

History

0.1.0 (2016-09-15)

  • First release on PyPI.

0.1.1 (2016-09-17)

  • Minor documentation changes

  • Renamed some internal variables

0.2.0 (2016-09-21)

  • Introduced new feature: regress_out_feat

  • Major renaming of variables for concistency

0.3.0 (2016-11-30)

  • Added L-BFGS optimizer in addition to Adam. Use optimizer=”lbfgs” in Concise()

0.3.1 (2016-11-30)

  • New function: best_kmers for motif efficient initialization

0.4.0 (2017-02-07)

  • refactor: Removed regress_out feature

  • feature: multi-task learning

0.4.1 (2017-02-09)

  • bugfix: multi-task learning

0.4.2 (2017-02-09)

  • same as 0.4.1 (pypi upload failed for 0.4.1)

0.4.3 (2017-02-09)

  • feat: added early_stop_patience argument

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

concise-0.4.3.tar.gz (743.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

concise-0.4.3-py2.py3-none-any.whl (29.0 kB view details)

Uploaded Python 2Python 3

File details

Details for the file concise-0.4.3.tar.gz.

File metadata

  • Download URL: concise-0.4.3.tar.gz
  • Upload date:
  • Size: 743.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for concise-0.4.3.tar.gz
Algorithm Hash digest
SHA256 7a2171be8c6408d4febe2250cf67b6bd3e15030537d6ed3472a9ea6d4347b82f
MD5 64d3da7c04e7c7d084b19e12ebb539dc
BLAKE2b-256 91bc46f50a4e79f36dbbf3bbaac809b9ce766dd069a0ada682cb94cb82e4c499

See more details on using hashes here.

File details

Details for the file concise-0.4.3-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for concise-0.4.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 dee3728a5536829584fc72ab341a5986e97fa6648535d3f386df2f3e55451ea6
MD5 7caebf11ba1e9e6757c0214f67dbfd7f
BLAKE2b-256 d25079e7fc2a0371e2e8856b574b4ef3388313e2cc1cfa003c539ddf9678491a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page