TREDNet/phase_two_K562

Authors: Sanjarbek Hudaiberdiev

License: CC-BY-ND

Contributed by: Sanjarbek Hudaiberdiev

Cite as: https://medrxiv.org/cgi/content/short/2022.05.13.22275035v1

Type: None

Postprocessing: None

Trained on: Dataset on autosomal chromosomes. held-out chromosomes chr7,8,9

Source files

Model predicting tissue-specific enhancer scores

Create a new conda environment with all dependencies installed
kipoi env create TREDNet/phase_two_K562
source activate kipoi-TREDNet__phase_two_K562
Test the model
kipoi test TREDNet/phase_two_K562 --source=kipoi
Make a prediction
kipoi get-example TREDNet/phase_two_K562 -o example
kipoi predict TREDNet/phase_two_K562 \
  --dataloader_args='{"intervals_file": "example/intervals_file", "fasta_file": "example/fasta_file"}' \
  -o '/tmp/TREDNet|phase_two_K562.example_pred.tsv'
# check the results
head '/tmp/TREDNet|phase_two_K562.example_pred.tsv'
Create a new conda environment with all dependencies installed
kipoi env create TREDNet/phase_two_K562
source activate kipoi-TREDNet__phase_two_K562
Get the model
import kipoi
model = kipoi.get_model('TREDNet/phase_two_K562')
Make a prediction for example files
pred = model.pipeline.predict_example(batch_size=4)
Use dataloader and model separately
# Download example dataloader kwargs
dl_kwargs = model.default_dataloader.download_example('example')
# Get the dataloader and instantiate it
dl = model.default_dataloader(**dl_kwargs)
# get a batch iterator
batch_iterator = dl.batch_iter(batch_size=4)
for batch in batch_iterator:
    # predict for a batch
    batch_pred = model.predict_on_batch(batch['inputs'])
Make predictions for custom files directly
pred = model.pipeline.predict(dl_kwargs, batch_size=4)
Get the model
library(reticulate)
kipoi <- import('kipoi')
model <- kipoi$get_model('TREDNet/phase_two_K562')
Make a prediction for example files
predictions <- model$pipeline$predict_example()
Use dataloader and model separately
# Download example dataloader kwargs
dl_kwargs <- model$default_dataloader$download_example('example')
# Get the dataloader
dl <- model$default_dataloader(dl_kwargs)
# get a batch iterator
it <- dl$batch_iter(batch_size=4)
# predict for a batch
batch <- iter_next(it)
model$predict_on_batch(batch$inputs)
Make predictions for custom files directly
pred <- model$pipeline$predict(dl_kwargs, batch_size=4)
Get the docker image
docker pull kipoi/kipoi-docker:trednet-slim
Get the full sized docker image
docker pull kipoi/kipoi-docker:trednet
Get the activated conda environment inside the container
docker run -it kipoi/kipoi-docker:trednet-slim
Test the model
docker run kipoi/kipoi-docker:trednet-slim kipoi test TREDNet/phase_two_K562 --source=kipoi
Make prediction for custom files directly
# Create an example directory containing the data
mkdir -p $PWD/kipoi-example 
# You can replace $PWD/kipoi-example with a different absolute path containing the data 
docker run -v $PWD/kipoi-example:/app/ kipoi/kipoi-docker:trednet-slim \
kipoi get-example TREDNet/phase_two_K562 -o /app/example 
docker run -v $PWD/kipoi-example:/app/ kipoi/kipoi-docker:trednet-slim \
kipoi predict TREDNet/phase_two_K562 \
--dataloader_args='{'intervals_file': '/app/example/intervals_file', 'fasta_file': '/app/example/fasta_file'}' \
-o '/app/TREDNet_phase_two_K562.example_pred.tsv' 
# check the results
head $PWD/kipoi-example/TREDNet_phase_two_K562.example_pred.tsv
    
Install apptainer
https://apptainer.org/docs/user/main/quick_start.html#quick-installation-steps
Make prediction for custom files directly
kipoi get-example TREDNet/phase_two_K562 -o example
kipoi predict TREDNet/phase_two_K562 \
--dataloader_args='{"intervals_file": "example/intervals_file", "fasta_file": "example/fasta_file"}' \
-o 'TREDNet_phase_two_K562.example_pred.tsv' \
--singularity 
# check the results
head TREDNet_phase_two_K562.example_pred.tsv

Schema

Inputs

Single numpy array

Name: None

    Shape: (2000, 4) 

    Doc: 2kb regions to be encoded one-hot.


Targets

Single numpy array

Name: None

    Shape: (1,) 

    Doc: model prediction description


Dataloader

Defined as: kipoiseq.dataloaders.SeqIntervalDl

Doc: Dataloader for a combination of fasta and tab-delimited input files such as bed files. The dataloader extracts regions from the fasta file as defined in the tab-delimited `intervals_file` and converts them into one-hot encoded format. Returned sequences are of the type np.array with the shape inferred from the arguments: `alphabet_axis` and `dummy_axis`.

Authors: Ziga Avsec , Roman Kreuzhuber

Type: Dataset

License: MIT


Arguments

intervals_file : bed3+<columns> file path containing intervals + (optionally) labels

fasta_file : Reference genome FASTA file path.

num_chr_fasta (optional): True, the the dataloader will make sure that the chromosomes don't start with chr.

label_dtype (optional): None, datatype of the task labels taken from the intervals_file. Example: str, int, float, np.float32

use_strand (optional): reverse-complement fasta sequence if bed file defines negative strand. Requires a bed6 file


Model dependencies
conda:
  • python=3.9
  • h5py=3.6
  • pip=21.2.4
  • keras=2.8
  • tensorflow=2.8

pip:
  • protobuf==3.20

Dataloader dependencies
conda:
  • bioconda::pybedtools
  • bioconda::pyfaidx
  • bioconda::pyranges
  • numpy
  • pandas

pip:
  • kipoiseq