-
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.
feat: include muller plots from demonanalysis pkg (#52)
- Loading branch information
1 parent
c551fce
commit fc6ed2e
Showing
32 changed files
with
910 additions
and
7,679 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.git/ | ||
*~ | ||
.DS_Store | ||
._* | ||
.snakemake/ | ||
tests/test1/output | ||
tests/test2/output | ||
.ipynb_checkpoints/ |
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 |
---|---|---|
|
@@ -11,12 +11,12 @@ on: | |
jobs: | ||
|
||
assignee-reviewer: | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: kentaro-m/[email protected] | ||
|
||
conventional-title: | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: morrisoncole/[email protected] | ||
with: | ||
|
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 +1 @@ | ||
1.1.4 | ||
1.2.0 |
This file was deleted.
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
############################################################################### | ||
# | ||
# Create internal conda envs with all dependencies | ||
# | ||
# AUTHOR: Maciej_Bak | ||
# CONTACT: [email protected] | ||
# | ||
############################################################################### | ||
|
||
# exit at a first command that exits with a !=0 status | ||
set -eo pipefail | ||
|
||
$CONDA_PREFIX/bin/snakemake \ | ||
--snakefile="workflow/Snakefile" \ | ||
--configfile="tests/localtest/config-template.yml" \ | ||
--config workflow_repo_path="$PWD" workflow_analysis_outdir="$PWD/tests/localtest/output" \ | ||
--use-conda \ | ||
--conda-create-envs-only \ | ||
--conda-frontend=conda \ | ||
--cores 1 \ | ||
--nolock \ | ||
all | ||
|
||
for file in .snakemake/conda/*.yaml; do | ||
if [ -f "$file" ]; then | ||
if grep -q "name: warlock-r" "$file"; then | ||
ENVPATH="${file%.yaml}" | ||
break | ||
fi | ||
fi | ||
done | ||
|
||
eval "$(conda shell.bash hook)" | ||
conda deactivate | ||
conda activate $ENVPATH | ||
|
||
# strange error often appears, installation needs to be called twice | ||
Rscript -e "devtools::install('resources/demonanalysis', upgrade=TRUE)" || true | ||
Rscript -e "devtools::install('resources/demonanalysis', upgrade=TRUE)" || true |
Oops, something went wrong.