rbbt-image 0.1.7 → 0.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ef8f85379b89c224a40cd3d62e4c380d26964fce
4
- data.tar.gz: 6e9dadd53f2c2eb2c51111518b73611485d3b52e
3
+ metadata.gz: 4315b3197e42bc7bc251c929639ba3305a94b05e
4
+ data.tar.gz: 850d49ad2942e9fc5ca9d30a196145dffd12bcf5
5
5
  SHA512:
6
- metadata.gz: 1101cc47a96e0f31159ee24af74e2673e92c893006a02ef36a4a99c3a100756b123dcde677d97044c7c1d2c04c99d1d07cbcfa212cc567f10f259a9db72fe4f6
7
- data.tar.gz: 1b5878c1fcc75eb572d77fb778bf2385add507e16aeaf43d9a7b822582d6d41fdac1d30a8d841ffd1fef194028ae5dd9eabb573952705c94661c74cdc5204fc6
6
+ metadata.gz: 3b6b9dfc32521fc1c23074129d13d8f0b9e5c89c1d38440d24d01533d245439e50bc1adb0480fd1171e2d9593094abbbd418210a871c8e6141e37379d64e713a
7
+ data.tar.gz: ff3cee902de1d1296c991f67fef69c7447a0e8d970cadac8bb60f1c2c096e0a5d9e6dd48a913692fdc75c5ab05589bc9e1ba7f87ca44e6497a4e500c0dc859c6
@@ -0,0 +1,16 @@
1
+ #!/bin/bash -x
2
+
3
+ # USER RBBT BOOTSTRAP
4
+ # ===================
5
+
6
+ for workflow in $WORKFLOWS; do
7
+ rbbt workflow install $workflow
8
+ done
9
+
10
+ export RBBT_WORKFLOW_AUTOINSTALL
11
+ export RBBT_LOG
12
+
13
+ for workflow in $BOOTSTRAP_WORKFLOWS; do
14
+ echo "Bootstrapping $workflow on $BOOTSTRAP_CPUS CPUs"
15
+ rbbt workflow cmd $workflow bootstrap --cpus $BOOTSTRAP_CPUS
16
+ done
@@ -0,0 +1,30 @@
1
+ #!/bin/bash -x
2
+
3
+ # RUBY GEMS and RBBT
4
+ # =================
5
+
6
+ export REALLY_GEM_UPDATE_SYSTEM=true
7
+ env REALLY_GEM_UPDATE_SYSTEM=true gem update --no-ri --no-rdoc --system
8
+ gem install --force --no-ri --no-rdoc ZenTest
9
+ gem install --force --no-ri --no-rdoc RubyInline
10
+
11
+ # R (extra config in gem)
12
+ gem install --conservative --no-ri --no-rdoc rsruby -- --with-R-dir=/usr/lib/R --with-R-include=/usr/share/R/include --with_cflags="-fPIC -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wall -fno-strict-aliasing"
13
+
14
+ # Java (extra config in gem)
15
+ export JAVA_HOME=$(echo /usr/lib/jvm/java-7-openjdk-*)
16
+ gem install --conservative --force --no-ri --no-rdoc rjb
17
+
18
+ # Rbbt and some optional gems
19
+ gem install --no-ri --no-rdoc --force \
20
+ tokyocabinet \
21
+ ruby-prof \
22
+ rbbt-util rbbt-rest rbbt-dm rbbt-text rbbt-sources rbbt-phgx rbbt-GE \
23
+ rserve-client \
24
+ uglifier therubyracer kramdown\
25
+ puma
26
+
27
+ # Get good version of lockfile
28
+ wget http://ubio.bioinfo.cnio.es/people/mvazquezg/lockfile-2.1.4.gem -O /tmp/lockfile-2.1.4.gem
29
+ gem install --no-ri --no-rdoc /tmp/lockfile-2.1.4.gem
30
+
@@ -0,0 +1,15 @@
1
+ #!/bin/bash -x
2
+
3
+ # RUBY INSTALL
4
+ # ============
5
+
6
+ cd /tmp
7
+ wget https://cache.ruby-lang.org/pub/ruby/2.3/ruby-2.3.0.tar.gz
8
+ tar -xvzf ruby-2.3.0.tar.gz
9
+ cd ruby-2.3.0/
10
+ ./configure --prefix=/usr/local
11
+ make && make install
12
+
13
+ grep "#Ruby2" /etc/profile || echo 'export PATH="/usr/local/bin:$PATH" #Ruby2' >> /etc/profile
14
+ . /etc/profile
15
+
@@ -0,0 +1,26 @@
1
+ #!/bin/bash -x
2
+
3
+ # INSTALL
4
+ # =======
5
+
6
+ # Basic system requirements
7
+ # -------------------------
8
+ apt-get -y update
9
+ apt-get -y update
10
+ apt-get -y install \
11
+ bison autoconf g++ libxslt1-dev make \
12
+ zlib1g-dev libbz2-dev libreadline6 libreadline6-dev \
13
+ wget curl git openssl libyaml-0-2 libyaml-dev \
14
+ ruby2.0 ruby-dev \
15
+ r-base-core r-base-dev r-cran-rserve \
16
+ openjdk-7-jdk \
17
+ libtokyocabinet-dev tokyocabinet-bin \
18
+ build-essential zlib1g-dev libssl-dev libreadline6-dev libyaml-dev libffi-dev
19
+
20
+
21
+ grep R_HOME /etc/profile || echo "export R_HOME='/usr/lib/R' # For Ruby's RSRuby gem" >> /etc/profile
22
+ . /etc/profile
23
+
24
+ # This link was broken for some reason
25
+ rm /usr/lib/R/bin/Rserve
26
+ ln -s /usr/lib/R/site-library/Rserve/libs/Rserve /usr/lib/R/bin/Rserve
@@ -0,0 +1,16 @@
1
+ #!/bin/bash -x
2
+
3
+ # USER RBBT CONFIG
4
+ # ================
5
+
6
+ # File servers: to speed up the production of some resources
7
+ for resource in $REMOTE_RESOURCES; do
8
+ echo "Adding remote file server: $resource -- $RBBT_FILE_SERVER"
9
+ rbbt file_server add $resource $RBBT_FILE_SERVER
10
+ done
11
+
12
+ # Remote workflows: avoid costly cache generation
13
+ for workflow in $REMOTE_WORKFLOWS; do
14
+ echo "Adding remote workflow: $workflow -- $RBBT_WORKFLOW_SERVER"
15
+ rbbt workflow remote add $workflow $RBBT_WORKFLOW_SERVER
16
+ done
@@ -0,0 +1,18 @@
1
+ #!/bin/bash -x
2
+
3
+ test -z ${RBBT_SERVER+x} && RBBT_SERVER=http://rbbt.bioinfo.cnio.es/
4
+ test -z ${RBBT_FILE_SERVER+x} && RBBT_FILE_SERVER="$RBBT_SERVER"
5
+ test -z ${RBBT_WORKFLOW_SERVER+x} && RBBT_WORKFLOW_SERVER="$RBBT_SERVER"
6
+
7
+ test -z ${REMOTE_RESOURCES+x} && REMOTE_RESOURCES="Organism ICGC COSMIC KEGG InterPro"
8
+ test -z ${REMOTE_WORFLOWS+x} && REMOTE_WORFLOWS=""
9
+
10
+ test -z ${RBBT_WORKFLOW_AUTOINSTALL+x} && RBBT_WORKFLOW_AUTOINSTALL="true"
11
+
12
+ test -z ${WORKFLOWS+x} && WORKFLOWS=""
13
+
14
+ test -z ${BOOTSTRAP_WORKFLOWS+x} && BOOTSTRAP_WORKFLOWS=""
15
+ test -z ${BOOTSTRAP_CPUS+x} && BOOTSTRAP_CPUS="2"
16
+
17
+ test -z ${RBBT_LOG+x} && RBBT_LOG="LOW"
18
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbbt-image
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miguel Vazquez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-04 00:00:00.000000000 Z
11
+ date: 2016-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rbbt-util
@@ -37,6 +37,12 @@ files:
37
37
  - bin/build_rbbt_provision_sh.rb
38
38
  - bin/run_rbbt_docker.rb
39
39
  - lib/.keep
40
+ - share/provision_scripts/bootstrap.sh
41
+ - share/provision_scripts/gem_setup.sh
42
+ - share/provision_scripts/ruby_setup.sh
43
+ - share/provision_scripts/ubuntu_setup.sh
44
+ - share/provision_scripts/user_setup.sh
45
+ - share/provision_scripts/variables.sh
40
46
  homepage: http://github.com/mikisvaz/rbbt-image
41
47
  licenses:
42
48
  - MIT