-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- change easy_install scripts to install libs and docs one level up from INSTALLATION_PATH - It would be cleaner to re-define INSTALLATION_PATH to function like a standard PREFIX (e.g. /usr/local), but this would be a bigger change - Conform dev version to python standard (1.1.0.dev0) - Use additional resources in vagrant box (cpu, storage) - needed for compiling casper - Vagrantfile now installs all needed software - document using vagrant - All (non-skipped) tests pass from the vagrant box
- Loading branch information
Showing
11 changed files
with
216 additions
and
58 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -92,4 +92,4 @@ Indices and tables | |
overlap_filtering | ||
workflow | ||
search_hmm | ||
|
||
vagrant |
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
.. _vagrant: | ||
|
||
Running TRAL using vagrant | ||
========================== | ||
|
||
Building | ||
-------- | ||
|
||
To build a vagrant box, first clone tral from the git repo. Next, run | ||
:: | ||
|
||
vagrant up | ||
vagrant ssh | ||
|
||
This will The current working directory will be mounted at /vagrant within the box. | ||
Tral should be run as root within the box (it uses /root/.tral as the data dir). | ||
:: | ||
|
||
sudo su | ||
cd /vagrant | ||
|
||
|
||
Testing TRAL | ||
------------ | ||
|
||
The vagrant box is useful for testing tral. | ||
:: | ||
|
||
vagrant ssh | ||
sudo su | ||
cd /vagrant | ||
pytest |
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
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 +1 @@ | ||
__version__ = "1.1.0-dev" | ||
__version__ = "1.1.0.dev0" |
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