-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update command line parameters (#32)
* working multiprocessing * counter and control_window_length are now computed in advance of _run_one_window() * [test] test_run_one_window had to be adapted as it has now also the control_window_length as input * [test] test_run_one_window had to be adapted as it has now also the control_window_length as input * [test] correct expected output * [test] computation control_window_length * fixed: problem with hash not being deterministic which caused problems in the multi-threading, now using a determinisitc version * clean up * correct indent * random hash to deterministic hash * update multiprocessing modules that are needed * fix: computation control window length * delete empty log file * delete empty log file * shotgun command to run command * update log file naming * [README] add channels to conda enviroment installation] * updated readme with new commands * update imported packages to viloca, and other naming * update viloca naming here * update viloca naming here * [unit tests] update commands * update author * build is needed for libshorah * updated readme
- Loading branch information
1 parent
6835ab1
commit 39fc4c9
Showing
38 changed files
with
830 additions
and
355 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
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
[tool.poetry] | ||
name = "ShoRAH" | ||
name = "VILOCA" | ||
version = "0.1.0" | ||
description = "SHOrt Reads Assembly into Haplotypes" | ||
license = "GPL-3.0-only" | ||
authors = ["Benjamin Langer <[email protected]>"] | ||
authors = ["Benjamin Langer <[email protected]>, Lara Fuhrmann <[email protected]>"] | ||
build = "build.py" | ||
packages = [ | ||
{ include = "shorah" } | ||
{ include = "viloca" } | ||
] | ||
|
||
[tool.poetry.scripts] | ||
shorah = 'shorah.cli:main' | ||
viloca = 'viloca.cli:main' | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.9.9,<3.11" | ||
|
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,4 +1,4 @@ | ||
#!/bin/bash | ||
|
||
shorah shotgun -a 0.1 -w 201 -x 100000 -p 0.9 -c 0 \ | ||
viloca run -a 0.1 -w 201 -x 100000 -p 0.9 -c 0 \ | ||
-r HXB2:2469-3713 -R 42 -f test_ref.fasta -b test_aln.cram --out_format csv "$@" |
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,3 +1,3 @@ | ||
#!/bin/bash | ||
|
||
shorah shotgun -a 0.1 -w 42 -x 100000 -p 0.9 -c 0 -r REF:43-273 -R 42 -b test_aln.cram -f ref.fasta | ||
viloca run -a 0.1 -w 42 -x 100000 -p 0.9 -c 0 -r REF:43-273 -R 42 -b test_aln.cram -f ref.fasta |
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
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,4 +1,4 @@ | ||
from shorah import tiling | ||
from viloca import tiling | ||
import pytest | ||
|
||
def test_equispaced(): | ||
|
File renamed without changes.
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
Oops, something went wrong.