Skip to content

Commit

Permalink
Merge branch 'dev' into 136-fix-merge_tablesr-fails-if-given-empty-input
Browse files Browse the repository at this point in the history
  • Loading branch information
deliaBlue committed Feb 11, 2024
2 parents 0e79c40 + 6066658 commit e312feb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# This file is used to list commits which will be ignored by github to calculate git blame
# These are commits which modify multiple parts of the codebase, e.g formatting changes

# Format Snakefile with snakefmt
684d582acdb8af4ae87911dc7eb747411ff30eaa
7 changes: 2 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,8 @@ jobs:
run: pylint --rcfile=../pylint.cfg ./*.py

- name: black
uses: psf/black@stable
with:
options: "--check --verbose --line-length=79 --required-version 24.1.1"
src: "./scripts"

working-directory: ./scripts
run: black --check --verbose --line-length=79 ./*.py

snakemake-format-graph-test:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions environment.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ channels:
- conda-forge
- bioconda
dependencies:
- black>=24.1.1
- coverage>=7.3.2
- flake8>=6.1.0
- flake8-docstrings>=1.7.0
Expand Down
8 changes: 5 additions & 3 deletions workflow/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,10 @@ rule finish:
sample=pd.unique(samples_table.index.values),
),
piles_design=expand(
PILEUP_DIR / "{condition}" / "check_file_{condition}.txt"
if config["lib_dict"] != None
else [],
(
PILEUP_DIR / "{condition}" / "check_file_{condition}.txt"
if config["lib_dict"] != None
else []
),
condition=list(config["lib_dict"].keys()),
),

0 comments on commit e312feb

Please sign in to comment.