Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BiSePS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Skander Hatira
BiSePS
Commits
33f15b4c
Commit
33f15b4c
authored
3 years ago
by
Skander Hatira
Browse files
Options
Downloads
Patches
Plain Diff
try fix missing files in remote mode
parent
1dc6e971
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
workflow/Snakefile
+5
-52
5 additions, 52 deletions
workflow/Snakefile
with
5 additions
and
52 deletions
workflow/Snakefile
+
5
−
52
View file @
33f15b4c
...
...
@@ -17,18 +17,8 @@ def all_input(wildcards):
wanted_input = []
# Genome_preparation
if is_activated(config["steps"]["genome_preparation"]):
wanted_input.extend(
expand(
[
config['resources']['ref']['genome'] + ".fai"
],
)
)
# Quality report
if is_activated(config["steps"]["quality"]):
wanted_input.extend(
wanted_input.extend(
expand(
[
...
...
@@ -39,8 +29,7 @@ def all_input(wildcards):
)
)
if is_activated(config["steps"]["quality"]):
wanted_input.extend(
wanted_input.extend(
expand(
[
outdir+"results/{unit.sample}-TechRep_{unit.techrep}-BioRep_{unit.biorep}/{unit.sample}-TechRep_{unit.techrep}-BioRep_{unit.biorep}-bismark_report.html"
...
...
@@ -53,8 +42,7 @@ def all_input(wildcards):
# Bismark methylation extraction report
if is_activated(config["steps"]["quality"]):
wanted_input.extend(
wanted_input.extend(
expand(
[
outdir+"results/{unit.sample}-TechRep_{unit.techrep}-BioRep_{unit.biorep}/methylation_extraction_bismark/{unit.sample}-TechRep_{unit.techrep}-BioRep_{unit.biorep}.deduplicated.CX_report.txt.CGmap.gz"
...
...
@@ -62,8 +50,7 @@ def all_input(wildcards):
unit=get_merged(),
)
)
if is_activated(config["steps"]["quality"]):
wanted_input.extend(
wanted_input.extend(
expand(
[
outdir+"results/{unit.sample}-TechRep_{unit.techrep}-BioRep_{unit.biorep}/methylation_extraction_bismark/{unit.sample}-TechRep_{unit.techrep}-BioRep_{unit.biorep}.deduplicated.CX_report.txt.sorted.{context}.bw",
...
...
@@ -73,41 +60,7 @@ def all_input(wildcards):
unit=get_merged(),
context= ["cg","chg","chh"]
)
)
# if is_activated(config["steps"]["quality"]):
# wanted_input.extend(
# expand(
# [
# outdir+"results/methylation_calling/{unit.sample}-TechRep_{unit.techrep}/{unit.sample}-report.rds"
# ] ,
# unit=get_reports(),
# )
# )
# Methylation calling with DMRCaller for all pairwise comparisons control(s) vs treatment(s)
# if is_activated(config["steps"]["methylation_extraction_bismark"]):
# wanted_input.extend(
# expand(
# [
# outdir+"results/methylation_calling/{unit.sample}-TechRep_{unit.techrep}/{unit.sample}-report.rds",
# ] ,
# unit=get_reports(),
# )
# )
# if is_activated(config["steps"]["methylation_calling"]):
# wanted_input.extend(
# expand(
# [
# outdir+"results/methylation_calling/{control.sample}-{control.techrep}_vs_{treatment.sample}-{treatment.techrep}/{control.sample}-{control.techrep}_vs_{treatment.sample}-{treatment.techrep}_low_resolution_profiles.pdf",
# ] ,
# control=get_control(),
# treatment=get_treatment()
# )
# )
)
return wanted_input
rule all:
input: all_input
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment