-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1041 from maxplanck-ie/develop
3.0.0
- Loading branch information
Showing
188 changed files
with
3,128 additions
and
2,470 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
run involves checkpoint jobs | ||
conda installation | ||
Conda environment | ||
Using profile | ||
Execute | ||
sanitize_local_storage_copies | ||
tracemalloc | ||
wildcard_constraints | ||
SyntaxWarning: invalid escape sequence | ||
Would remove temporary |
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,6 @@ | ||
name: conda_ci | ||
dependencies: | ||
- python=3.11 | ||
- anaconda-client | ||
- conda-build | ||
- conda-verify |
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,6 @@ | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- defaults | ||
channel_priority: 'strict' | ||
show_channel_urls: True |
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,19 @@ | ||
name: conda-build | ||
|
||
on: [pull_request, push] | ||
|
||
jobs: | ||
condaBuild: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
environment-file: .github/conda_ci.yml | ||
condarc-file: .github/condarc.yml | ||
- name: buildSnakePipes | ||
uses: uibcdf/action-build-and-upload-conda-packages@v1.3.0 | ||
with: | ||
meta_yaml_dir: conda-recipe | ||
python-version: 3.11 | ||
upload: false |
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: pytest | ||
|
||
on: [pull_request, push] | ||
|
||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
|
||
jobs: | ||
test_mRNA: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
environment-file: snakePipes/shared/rules/envs/rna_seq.yaml | ||
activate-environment: snakepipes_RNAseq_environment_3.0 | ||
condarc-file: .github/condarc.yml | ||
- name: create_starix | ||
run: | | ||
gunzip -c tests/data/genomes/genome_chr17.fa.gz > genome_chr17.fa | ||
gunzip -c tests/data/genomes/genes_chr17.gtf.gz > genes_chr17.gtf | ||
STAR --runThreadN 4 --runMode genomeGenerate --genomeDir tests/data/mRNA_STAR --genomeFastaFiles genome_chr17.fa --sjdbGTFfile genes_chr17.gtf --sjdbOverhang 100 --genomeSAindexNbases 12 | ||
- uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
environment-file: .github/conda_ci.yml | ||
activate-environment: conda_ci | ||
condarc-file: .github/condarc.yml | ||
- name: Install snakePipes | ||
run: | | ||
pip install .[actions] | ||
- name: pytest | ||
run: | | ||
snakePipes config --tempDir /tmp --condaEnvDir ./ | ||
snakePipes createEnvs --only CONDA_SHARED_ENV CONDA_RNASEQ_ENV | ||
pytest --verbosity=2 -rP tests/test_mRNA.py | ||
CI_jobcounts: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
environment-file: .github/conda_ci.yml | ||
activate-environment: conda_ci | ||
condarc-file: .github/condarc.yml | ||
- name: Install snakePipes | ||
run: | | ||
pip install .[actions] | ||
- name: pytest | ||
run: | | ||
snakePipes config --tempDir /tmp --condaEnvDir ./ | ||
pytest -n 4 --verbosity=2 -rP tests/test_jobcounts.py |
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 |
---|---|---|
|
@@ -30,3 +30,7 @@ snakePipes.egg-info | |
|
||
# misc | ||
.vscode/ | ||
|
||
# tests | ||
*fa | ||
*gtf |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.