forked from ctb/2012-paper-diginorm
-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Non root install #6
Open
mr-c
wants to merge
47
commits into
ubuntu14.04/v1.1
Choose a base branch
from
non-root-install
base: ubuntu14.04/v1.1
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 45 commits
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
2bb35a8
Added non root install instructions
themangoemoji cd21e3f
EC2 non root install instructions
themangoemoji becd6f3
pipeline notes and prokka install update
themangoemoji 4a87f7f
pipline note update
themangoemoji 5e8fbd9
changed ~ to /Users/narrows
themangoemoji dc86e93
rename
themangoemoji caaa0bb
no mo .profile
themangoemoji a966b79
no mo .profile
themangoemoji 92bda18
Merge branch 'non-root-install' of github.com:ged-lab/2012-paper-digi…
themangoemoji 3d15fcf
Add RackSpace install instructions
themangoemoji 74bf7d9
Add RackSpace install instructions
themangoemoji b66eae0
Shake installs out of install-prokka script
themangoemoji 31e9b73
Change install location to ~/src
themangoemoji 9d08ddd
Check out the correct branch, curl correct file
themangoemoji bfce3b7
Check out the correct branch, curl correct file
themangoemoji c78f9ba
Merge branch 'non-root-install' of https://github.com/ged-lab/2012-pa…
themangoemoji 55a61f3
Add rackspace instructions and prokka install updates
themangoemoji 4b29611
Merge branch 'non-root-install' of github.com:ged-lab/2012-paper-digi…
themangoemoji 2568739
Upgrade numpy
themangoemoji fcaf3d0
Seperate EC2 and RackSpace instructions
themangoemoji 353bacb
Expand arguments for Makefile commands
themangoemoji 88e9fa3
Add additional targets for missing files and download data
themangoemoji a3c77a4
Rerout /mnt/bin to ${HOME}/bin
themangoemoji 6438276
Resolve merge
themangoemoji 727aa85
Merge branch 'non-root-install' of https://github.com/ged-lab/2012-pa…
themangoemoji 8d3b137
Rerout /mnt/bin to ${HOME}/bin
themangoemoji 763a608
Update prokka-11 install
themangoemoji 99eac72
Merge with athyra
themangoemoji c21b7ba
Merging athyra/local differences
themangoemoji e8e8a0a
Update notes with proper root/non-root distinctions
themangoemoji ff79fd1
Merge branch 'non-root-install' of github.com:ged-lab/2012-paper-digi…
themangoemoji b6fd3f0
Fix install-prokka script
themangoemoji 28a9afe
Fix install-prokka script
themangoemoji 83eade1
Merge branch 'non-root-install' of github.com:ged-lab/2012-paper-digi…
themangoemoji 188a66f
Merge branch 'non-root-install' of github.com:ged-lab/2012-paper-digi…
themangoemoji e240d39
Merge branch 'non-root-install' of github.com:ged-lab/2012-paper-digi…
themangoemoji 17d9f17
Fixup pipeline notes
themangoemoji 29db18f
Move numpy install to root installs
themangoemoji a3328ba
Point root to install in user directory
themangoemoji f525527
Switch home to usert
themangoemoji 1bf737d
Add prodigal to root installs, change path variable ordering
themangoemoji 51e8670
Allow non-root to own their directory
themangoemoji 83267f2
Add screed install
themangoemoji a890134
Move screed install to non-root
themangoemoji 90cfefd
Correct thread variable syntax
themangoemoji 081d1e7
Use `prokka` directly in makefile, Update pipeline-notes
themangoemoji d5dcf9e
Fix user-land installs to use sudo
themangoemoji File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,46 +1,10 @@ | ||
cd /mnt | ||
curl -O http://www.vicbioinformatics.com/prokka-1.7.tar.gz | ||
tar xzf prokka-1.7.tar.gz | ||
|
||
cd /mnt | ||
curl -O ftp://selab.janelia.org/pub/software/hmmer3/3.1b1/hmmer-3.1b1.tar.gz | ||
tar xzf hmmer-3.1b1.tar.gz | ||
cd hmmer-3.1b1/ | ||
./configure --prefix=/usr && make && make install | ||
|
||
cd /mnt | ||
curl -O http://mbio-serv2.mbioekol.lu.se/ARAGORN/Downloads/aragorn1.2.36.tgz | ||
tar -xvzf aragorn1.2.36.tgz | ||
cd aragorn1.2.36/ | ||
gcc -O3 -ffast-math -finline-functions -o aragorn aragorn1.2.36.c | ||
cp aragorn /usr/local/bin | ||
|
||
cd /mnt | ||
curl -O http://prodigal.googlecode.com/files/prodigal.v2_60.tar.gz | ||
tar xzf prodigal.v2_60.tar.gz | ||
cd prodigal.v2_60/ | ||
make | ||
cp prodigal /usr/local/bin | ||
|
||
cd /mnt | ||
curl -O ftp://ftp.ncbi.nih.gov/toolbox/ncbi_tools/converters/by_program/tbl2asn/linux64.tbl2asn.gz | ||
gunzip linux64.tbl2asn.gz | ||
mv linux64.tbl2asn tbl2asn | ||
chmod +x tbl2asn | ||
cp tbl2asn /usr/local/bin | ||
|
||
cd /mnt | ||
curl -O http://ftp.gnu.org/gnu/parallel/parallel-20130822.tar.bz2 | ||
tar xjvf parallel-20130822.tar.bz2 | ||
cd parallel-20130822/ | ||
ls | ||
./configure && make && make install | ||
|
||
cd /mnt | ||
curl -O http://selab.janelia.org/software/infernal/infernal-1.1rc4.tar.gz | ||
tar xzf infernal-1.1rc4.tar.gz | ||
cd infernal-1.1rc4/ | ||
ls | ||
./configure && make && make install | ||
|
||
|
||
#!/bin/bash -ex | ||
|
||
mkdir -p ${HOME}/src/prokka | ||
cd ${HOME}/src/prokka | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. need to do a |
||
curl -OL https://github.com/Victorian-Bioinformatics-Consortium/prokka/archive/v1.11.tar.gz | ||
tar xzf v*.tar.gz | ||
ln -s prokka-* prokka | ||
echo "export PATH=${PATH}:${HOME}/src/prokka/prokka/bin" >> ~/.bashrc | ||
export PATH=${PATH}:${HOME}/src/prokka/prokka/bin | ||
prokka --setupdb |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mr-c
Here where I changed the prokka directories. I thought we talked about installing to
${HOME}/src/prokka/prokka-*/bin
, but both that and${HOME}/src/prokka/prokka-*
throw the error below. Isn't this bin (next to the binaries) where we want these installs though? I don't think anywhere else is appropriate.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about using the path
${HOME}/src/prokka/prokka-*/bin/prokka
to match what was there before?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And according to https://github.com/ged-lab/2012-paper-diginorm/pull/6/files#diff-ba53c673353e6a7edb32d8c3bd0f6817R9 you shouldn't even have to use a full path, just call prokka