Skip to content

Commit

Permalink
specified python version to ensure wheel is working when create env
Browse files Browse the repository at this point in the history
  • Loading branch information
riasc committed Mar 2, 2024
1 parent ee8eb42 commit 5c03fcb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
12 changes: 5 additions & 7 deletions workflow/envs/spladder.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
channels:
- anaconda
- bioconda
- conda-forge
dependencies:
- configargparse
- pip
- pip:
- spladder==3.0.4
- vcfpy==0.13.6

- python=3.6
- pysam
- pip
- pip:
- spladder==3.0.4
10 changes: 5 additions & 5 deletions workflow/rules/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,11 @@ def get_input_hlatyping_PE(wildcards):
return dict(
zip(
["fwd", "rev"],
expand("results/{sample}/{seqtype}/reads/{group}_{readtype}_preproc.fq.gz",
sample = wildcards.sample,
seqtype = "dnaseq" if wildcards.nartype == "DNA" else "rnaseq",
group = wildcards.group,
readtype = wildcards.readtype)
expand("results/{sample}/{seqtype}/reads/{group}_{pair}_preproc.fq.gz",
sample=wildcards.sample,
seqtype = "dnaseq" if wildcards.nartype == "DNA" else "rnaseq",
group=wildcards.group,
pair=["R1","R2"])
)
)

Expand Down

0 comments on commit 5c03fcb

Please sign in to comment.