Skip to content
Snippets Groups Projects
Commit 7523d274 authored by Alex Kanitz's avatar Alex Kanitz
Browse files

Merge branch 'dev' into 'fix_labkey_test'

# Conflicts:
#   .gitlab-ci.yml
parents ac73c70f 416a60f7
No related branches found
No related tags found
1 merge request!68fix(prepare_inputs): support relative paths
Pipeline #11000 passed
......@@ -328,6 +328,7 @@ pip-selfcheck.json
.DS_Store
runs/.*
!runs/PUT_YOUR_WORKFLOW_RUN_CONFIGS_HERE
._*
._.DS_Store
.snakemake/
logs/
......
......@@ -237,7 +237,11 @@ rule quantification_salmon:
"{sample}",
"{sample}.salmon.se"),
libType = lambda wildcards:
samples_table.loc[wildcards.sample, "libtype"]
samples_table.loc[wildcards.sample, "libtype"],
fraglen = lambda wildcards:
samples_table.loc[wildcards.sample, 'mean'],
fragsd = lambda wildcards:
samples_table.loc[wildcards.sample, 'sd']
log:
stderr = os.path.join(
......@@ -262,6 +266,8 @@ rule quantification_salmon:
--seqBias \
--validateMappings \
--threads {threads} \
--fldMean {params.fraglen} \
--fldSD {params.fragsd} \
--writeUnmappedNames \
--index {input.index} \
--geneMap {input.gtf} \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment