Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
sroener committed Jun 8, 2021
2 parents 203c2ea + 8248197 commit 0aedd77
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,4 @@
!CHANGELOG.md
!*.smk
*.code-workspace
__pycache__
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

## develop

## v0.3.2

- Hotfix: fixed bug in get_refsample

- update .gitignore

## v0.3.1

- Hotfix: unexpected behavior in conda environments

## v0.3.0

- updated documentation
Expand Down
2 changes: 1 addition & 1 deletion snakefile_GE_analysis.smk
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ samples.index.names = ["sample_id"]
validate(samples, schema="workflow/schemas/samples.schema.yaml")

def get_refsample(refsample):
return "results/intermediate/body/fft_summaries/fft_{}-{}_WPS.tsv.gz".format(refsample,samples["genome_build"].loc[samples["sample"] == refsample].values[0])
return "results/intermediate/{ID}/FFT_table/transcriptanno-{SAMPLE}-FFT_table.{GENOME}.tsv".format(ID = samples["ID"].loc[samples["sample"] == refsample].values[0], SAMPLE = refsample, GENOME = samples["genome_build"].loc[samples["sample"] == refsample].values[0])

rule all:
input:
Expand Down

0 comments on commit 0aedd77

Please sign in to comment.