Carrot root and DNA VCRU Bioinformatics USDA ARS Vegetable Crops Research Unit

This page was last updated on Tuesday, 25-Jun-2019 16:06:09 CDT

Installation notes for Roche 454 software version 3.0

Home Page

Prerequisites

Installation

  1. $ ver="3.0"
  2. Contact Roche us.gssupport@roche.com for access to the download page for the software.
    I stored it as /programinstallers/Roche3.0/Software_3.0_All_FLX.tgz
  3. $ cd /programinstallers/Roche3.0
  4. Main file is a tarbomb, so
    $ mkdir Software_3.0_All_FLX && cd Software_3.0_All_FLX
  5. $ tar -zxvf ../Software_3.0_All_FLX.tgz
  6. We only need DataAnalysis software
    $ tar -zxvf DataAnalysis_3.0_All_20140410_1643.tgz
  7. $ cd DataAnalysis_3.0_All
  8. We can only install in an X session
    $ sudo ./setup.sh
sudo apt-get install gcc-multilib
[sudo] password for dsenalik: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  gcc-4.8-multilib lib32asan0 lib32atomic1 lib32gcc-4.8-dev lib32gcc1
  lib32gomp1 lib32itm1 lib32quadmath0 libc6-dev-i386 libc6-dev-x32 libc6-x32
  libx32asan0 libx32atomic1 libx32gcc-4.8-dev libx32gcc1 libx32gomp1
  libx32itm1 libx32quadmath0
The following NEW packages will be installed:
  gcc-4.8-multilib gcc-multilib lib32asan0 lib32atomic1 lib32gcc-4.8-dev
  lib32gcc1 lib32gomp1 lib32itm1 lib32quadmath0 libc6-dev-i386 libc6-dev-x32
  libc6-x32 libx32asan0 libx32atomic1 libx32gcc-4.8-dev libx32gcc1 libx32gomp1
  libx32itm1 libx32quadmath0
0 upgraded, 19 newly installed, 0 to remove and 0 not upgraded.





sudo -i
cd /etc/apt/sources.list.d
echo "deb http://old-releases.ubuntu.com/ubuntu/ raring main restricted universe multiverse" >ia32-libs-raring.list
apt-get update
apt-get install ia32-libs

Install version 3.0 on ubuntu 16.04.5

  1. $ cd /programinstallers
  2. $ cp -puvr nas/Roche3.0 .
  3. $ cd Roche3.0/Software_3.0_All_FLX/DataAnalysis_3.0_All
  4. This step must be run in an x session
    $ sudo ./setup.sh
    Two errors, a dialog box "Error: Could not execute command: type rocks 2>&1", and
    sh: 1: /sbin/lspci: not found
  5. $ sudo ln -s /usr/bin/lspci /sbin/lspci
  6. If I want to edit the setup.sh file, I need to use
    vi -b setup.sh and :set noeol
    to avoid corrupting the binary data
  7. $ mkdir bogus; sudo ./setup.sh --keep --nox11 --target bogus --confirmq
  8. $ sudo mv /bin/sh /bin/shokay; sudo ln -s /bin/bash /bin/sh
  9. Warning: One or more of the following libraries was not found
    zlib.i386, libXi.i386, libXtst.i386, libXaw.i386
  10. $ sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0
    however they are all already installed
    lib32ncurses5 is already the newest version (6.0+20160213-1ubuntu1).
    lib32z1 is already the newest version (1:1.2.8.dfsg-2ubuntu4.1).
    lib32bz2-1.0 is already the newest version (1.0.6-5).
  11. $ sudo apt-get install libxi6:i386 libxtst6:i386 libxaw7:i386
  12. I could only do a local install because of the /bin/sh problem, but I was able to install to /opt/454/
  13. Cleanup
    $ sudo rm /sbin/lspci
    $ sudo rm /bin/sh ; sudo mv /bin/shokay /bin/sh
  14. Create a launcher for all users
    $ sudo nano /usr/share/applications/Bioinformatics/gsAssembler.desktop
  15. Add this text:
    #!/usr/bin/env xdg-open
    
    [Desktop Entry]
    Version=1.0
    Type=Application
    Terminal=false
    Exec=/opt/454/bin/gsAssembler
    Path=
    Name=gsAssembler 3.0
    Comment=
    Icon=
    Categories=Bioinformatics
  16. Do the same for gsMapper and gsAmplicon
  17. Add to default PATH
    $ sudo nano /etc/profile

    PATH="$PATH:/opt/454/bin"