We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6147c04 commit d4fc050Copy full SHA for d4fc050
versioned_singularity/TIDDIT.2.12.0
@@ -0,0 +1,23 @@
1
+BootStrap: debootstrap
2
+OSVersion: trusty
3
+MirrorURL: http://us.archive.ubuntu.com/ubuntu/
4
+
5
6
+%runscript
7
+ echo "This is what happens when you run the container..."
8
9
10
+%post
11
+ echo "Hello from inside the container"
12
+ sed -i 's/$/ universe/' /etc/apt/sources.list
13
+ apt-get update
14
+ apt-get -y --force-yes install build-essential cmake make zlib1g-dev python python-dev python-setuptools git wget libbz2-dev unzip
15
+ easy_install pip
16
+ pip install numpy cython
17
18
+ wget https://github.com/SciLifeLab/TIDDIT/archive/TIDDIT-2.12.0.zip
19
+ unzip TIDDIT-2.12.0.zip
20
21
+ mv TIDDIT-TIDDIT-2.12.0/* /bin/
22
+ cd /bin/ && ./INSTALL.sh
23
+ chmod +x /bin/TIDDIT.py
0 commit comments