-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow flexible installation location of long-to-linked-pe (#128)
* Allow flexible installation location of long-to-linked-pe * If already found on the PATH, use that path, else in src dir * Also remove unneeded btllib version restriction in requirements.txt * Remove hard-coded path to tigmint-make in run_tigmint_demo.sh * Update CI * Change python version for CI * Use mamba for all CI
- Loading branch information
Showing
4 changed files
with
17 additions
and
7 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
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ intervaltree | |
pybedtools | ||
pysam | ||
numpy | ||
btllib <=1.4.10 | ||
btllib |
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,11 +1,13 @@ | ||
#!/bin/bash | ||
|
||
echo "Please ensure that tigmint-make is in your PATH!" | ||
|
||
echo "Running tigmint with linked reads..." | ||
|
||
../../bin/tigmint-make -B tigmint draft=test_contig reads=test_linkedreads | ||
tigmint-make -B tigmint draft=test_contig reads=test_linkedreads | ||
|
||
echo "Running tigmint with long reads..." | ||
|
||
../../bin/tigmint-make -B tigmint-long draft=test_contig_long reads=test_longreads span=10 G=7000 dist=auto | ||
tigmint-make -B tigmint-long draft=test_contig_long reads=test_longreads span=10 G=7000 dist=auto | ||
|
||
echo "Done! Compare your output files to those in the 'expected_outputs' directory to ensure that the run was successful." |