Skip to content

Commit 421e623

Browse files
committed
pin snakemake <=6.7.0 in CI
1 parent f25ca93 commit 421e623

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
run: |
5151
pip install .
5252
pip install multiqc
53+
pip install "snakemake<=6.7.0"
5354
5455
- name: testing
5556
run: |

sequana_pipelines/mapper/main.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ def __init__(self, prog=NAME, epilog=None):
6565
pipeline_group.add_argument("--create-bigwig", action="store_true",
6666
help="create the bigwig files from the BAM files" )
6767

68+
self.add_argument("--run", default=False, action="store_true",
69+
help="execute the pipeline directly")
70+
71+
6872
def parse_args(self, *args):
6973
args_list = list(*args)
7074
if "--from-project" in args_list:

0 commit comments

Comments
 (0)