Skip to content

Commit

Permalink
Merge pull request #24 from sanger-pathogens/RT664678_more_container_…
Browse files Browse the repository at this point in the history
…fixes

RT664678 in production, assume farm_blast executable is in path
  • Loading branch information
seretol authored Dec 3, 2019
2 parents c024e75 + 51edc7d commit 0009353
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 67 deletions.
5 changes: 0 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
language: python
branches:
only:
- master
python:
- "3.7"
sudo: false
install:
- source ./install_dependencies.sh
before_script:
- pip install codecov
script:
Expand Down
2 changes: 1 addition & 1 deletion farm_blast/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def _make_combine_script(self, script_name=None):
if self.test:
print(self.farm_blast_script, '--test --fix_coords_in_blast_output x x', file=f)
else:
print(self.farm_blast_script, '--fix_coords_in_blast_output x x', file=f)
print('farm_blast --fix_coords_in_blast_output x x', file=f)
print('rm', ' '.join(self.files_to_delete), file=f)
print('touch FINISHED', file=f)
f.close()
Expand Down
59 changes: 0 additions & 59 deletions install_dependencies.sh

This file was deleted.

3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
print(found, program, sep='\t')

if not found_all_progs:
print('Cannot install because some programs from the blast+ package not found.', file=sys.stderr)
sys.exit(1)
print('Some programs from the blast+ package not found, farm_blast may not work properly.', file=sys.stderr)


setup(
Expand Down

0 comments on commit 0009353

Please sign in to comment.