File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## Tools development version
2+
3+ - fix ` ccbr_tools install ` : use the full path to the conda env on biowulf. (#64 , @kelly-sovacool )
4+
15## Tools 0.3.1
26
37- Bug fixes in ` ccbr_tools install ` :
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ class Biowulf(Cluster):
7070 GROUP = "CCBR_Pipeliner"
7171 PIPELINES_HOME = pathlib .Path ("/data/CCBR_Pipeliner/Pipelines" )
7272 TOOLS_HOME = pathlib .Path ("/data/CCBR_Pipeliner/Tools" )
73- CONDA_ACTIVATE = '. " /data/CCBR_Pipeliner/db/PipeDB/Conda/etc/profile.d/conda.sh" && conda activate py311'
73+ CONDA_ACTIVATE = "conda activate /data/CCBR_Pipeliner/db/PipeDB/Conda/envs/ py311"
7474
7575 def __init__ (self ):
7676 super ().__init__ ()
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ def test_hpc_biowulf():
1414 "<class 'ccbr_tools.pipeline.hpc.Biowulf'>({'name': 'biowulf'"
1515 ),
1616 hpc .CONDA_ACTIVATE
17- == '. " /data/CCBR_Pipeliner/db/PipeDB/Conda/etc/profile.d/conda.sh" && conda activate py311' ,
17+ == "conda activate /data/CCBR_Pipeliner/db/PipeDB/Conda/envs/ py311" ,
1818 ]
1919 )
2020
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def test_install():
4242 )
4343 assert (
4444 result
45- == """. " /data/CCBR_Pipeliner/db/PipeDB/Conda/etc/profile.d/conda.sh" && conda activate py311
45+ == """conda activate /data/CCBR_Pipeliner/db/PipeDB/Conda/envs/ py311
4646pip install git+https://github.com/CCBR/CHAMPAGNE.git@v0.3.0 -t /data/CCBR_Pipeliner/Pipelines/CHAMPAGNE/.v0.3.0
4747chmod -R a+rX /data/CCBR_Pipeliner/Pipelines/CHAMPAGNE/.v0.3.0
4848chown -R :CCBR_Pipeliner /data/CCBR_Pipeliner/Pipelines/CHAMPAGNE/.v0.3.0
@@ -63,7 +63,7 @@ def test_install_dev():
6363 )
6464 assert (
6565 result
66- == """. " /data/CCBR_Pipeliner/db/PipeDB/Conda/etc/profile.d/conda.sh" && conda activate py311
66+ == """conda activate /data/CCBR_Pipeliner/db/PipeDB/Conda/envs/ py311
6767pip install git+https://github.com/CCBR/CHAMPAGNE.git@main -t /data/CCBR_Pipeliner/Pipelines/CHAMPAGNE/.v0.3.0-dev
6868chmod -R a+rX /data/CCBR_Pipeliner/Pipelines/CHAMPAGNE/.v0.3.0-dev
6969chown -R :CCBR_Pipeliner /data/CCBR_Pipeliner/Pipelines/CHAMPAGNE/.v0.3.0-dev
You can’t perform that action at this time.
0 commit comments