-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
M. Boemo
committed
Jul 23, 2024
1 parent
286d5ff
commit 884bef1
Showing
17 changed files
with
123 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
Bootstrap: docker | ||
From: nvidia/cuda:11.1.1-cudnn8-devel-ubuntu18.04 | ||
|
||
%labels | ||
Version v4.0.2 | ||
|
||
%help | ||
DNAscent is software for detecting regions of BrdU and EdU incorporation in Oxford Nanopore reads. | ||
Source: https://github.com/MBoemo/DNAscent | ||
Documentation: https://dnascent.readthedocs.io/en/latest/?badge=latest | ||
Web: https://www.boemogroup.org/ | ||
Please submit any bugs to https://github.com/MBoemo/DNAscent/issues. | ||
|
||
%post | ||
|
||
# Install system packages | ||
apt-get update && apt-get install -y \ | ||
lzma-dev \ | ||
liblzma-dev \ | ||
libbz2-dev \ | ||
libbsd-dev \ | ||
git \ | ||
build-essential \ | ||
wget | ||
|
||
# Clone and compile DNAscent | ||
mkdir -p /app | ||
cd app | ||
git clone --recursive https://github.com/MBoemo/DNAscent.git | ||
cd DNAscent | ||
make | ||
|
||
# Install vbz plugin | ||
cd / | ||
mkdir -p /plugin | ||
cd plugin | ||
wget https://github.com/nanoporetech/vbz_compression/releases/download/v1.0.1/ont-vbz-hdf-plugin-1.0.1-Linux-x86_64.tar.gz | ||
tar -xf ont-vbz-hdf-plugin-1.0.1-Linux-x86_64.tar.gz | ||
|
||
%environment | ||
|
||
# cuda paths | ||
export CUDA_HOME=/usr/local/cuda | ||
export CPATH=/usr/local/cuda/include:$CPATH | ||
export CUDA_PATH=/usr/local/cuda | ||
export LIBRARY_PATH=/usr/local/cuda/lib64:$LIBRARY_PATH | ||
export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH | ||
export PATH=/usr/local/cuda/bin:$PATH | ||
|
||
# vbz plugin path | ||
export HDF5_PLUGIN_PATH=/plugin/ont-vbz-hdf-plugin-1.0.1-Linux/usr/local/hdf5/lib/plugin | ||
|
||
%runscript | ||
exec /app/DNAscent/bin/DNAscent "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
152 changes: 0 additions & 152 deletions
152
dnn_models/detect_model_BrdUEdU_DNAr10_4_1/keras_metadata.pb
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file modified
BIN
-179 KB
(98%)
dnn_models/detect_model_BrdUEdU_DNAr10_4_1/variables/variables.data-00000-of-00001
Binary file not shown.
Binary file modified
BIN
-512 Bytes
(97%)
dnn_models/detect_model_BrdUEdU_DNAr10_4_1/variables/variables.index
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
//---------------------------------------------------------- | ||
// Copyright 2020 University of Cambridge | ||
// Written by Michael A. Boemo ([email protected]) | ||
// This software is licensed under GPL-3.0. You should have | ||
// received a copy of the license with this software. If | ||
// not, please Email the author. | ||
|