Skip to content
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

Content onboarding scripts #26

Merged
merged 6 commits into from
Oct 22, 2019
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,16 @@ Vagrant.configure('2') do |config|
cd /home/vagrant
git clone https://github.com/NAL-i5K/wiggle-tools
git clone https://github.com/NAL-i5K/bam_to_bigwig
git clone https://gitlab.com/i5k_Workspace/apollo2_data_build_scripts.git
git clone https://github.com/GMOD/jbrowse
git clone https://github.com/NAL-i5K/content_onboarding_scripts
git clone https://github.com/GMOD/jbrowse

#Make other tools executable
sudo chmod +x /home/vagrant/wiggle-tools/GCcontent2bigwig.py
sudo chmod +x /home/vagrant/wiggle-tools/gap2bigwig.py
sudo chmod +x /home/vagrant/bam_to_bigwig/bam_to_bigwig.py
sudo chmod +x /home/vagrant/content_onboarding_scripts/bin/add_metadata_to_GC_gap_bigwig_tracks.pl
sudo chmod +x /home/vagrant/content_onboarding_scripts/bin/createOrganism.py
sudo chmod -R +x /home/vagrant/jbrowse/bin

# Create directories used
mkdir -p /app/data/blat
Expand All @@ -217,6 +225,9 @@ Vagrant.configure('2') do |config|
mkdir -p /app/data/working-files
mkdir -p /app/data/tools

#Add tools to PATH
export PATH=$PATH:/home/vagrant/wiggle-tools:/home/vagrant/bam_to_bigwig:/home/vagrant/content_onboarding_scripts/bin:/home/vagrant/jbrowse/bin

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This only sets $PATH for the active session. Once we reset the session, this $PATH is lost.


# install the Kent tools for data processing

Expand Down