Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
riboseq_pipeline
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
Container registry
Model registry
Operate
Environments
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
zavolan_group
pipelines
riboseq_pipeline
Commits
63e1a63c
Commit
63e1a63c
authored
6 years ago
by
BIOPZ-Gypas Foivos
Browse files
Options
Downloads
Patches
Plain Diff
Addition of output files in finish rule of process_data Snakefile
parent
7cce44cb
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
snakemake/process_data/Snakefile
+6
-8
6 additions, 8 deletions
snakemake/process_data/Snakefile
with
6 additions
and
8 deletions
snakemake/process_data/Snakefile
+
6
−
8
View file @
63e1a63c
configfile: "config.yaml"
configfile: "config.yaml"
#from snakemake.utils import listfiles
#from snakemake.utils import listfiles
localrules: finish
, count_oligos
localrules: finish
################################################################################
################################################################################
### Finish rule
### Finish rule
...
@@ -9,13 +9,11 @@ localrules: finish, count_oligos
...
@@ -9,13 +9,11 @@ localrules: finish, count_oligos
rule finish:
rule finish:
input:
input:
oligos_counts = expand(os.path.join(config["output_dir"], "{sample}", "oligos_counts.txt"), sample=config["sample"])
oligos_counts = expand(os.path.join(config["output_dir"], "{sample}", "oligos_counts.txt"), sample=config["sample"]),
pdf = expand(os.path.join(config["output_dir"], "{sample}/read_length/read_length_histogram.pdf"), sample=config["sample"]),
counts = expand(os.path.join(config["output_dir"], "{sample}/counts.tsv"), sample=config["sample"]),
#pdf = expand(os.path.join(config["output_dir"], "{sample}/read_length/read_length_histogram.pdf"), sample=config["sample"]),
bai = expand(os.path.join(config["output_dir"], "{sample}/transcripts.mapped.unique.a_site_profile.sorted.bam.bai"), sample=config["sample"]),
#counts = expand(os.path.join(config["output_dir"], "{sample}/counts.tsv"), sample=config["sample"]),
overrepresented_sequences_counts = expand(os.path.join(config["output_dir"], "{sample}/overepressented_sequences_other.txt"), sample=config["sample"])
#bai = expand(os.path.join(config["output_dir"], "{sample}/transcripts.mapped.unique.a_site_profile.sorted.bam.bai"), sample=config["sample"]),
#overrepresented_sequences_counts = expand(os.path.join(config["output_dir"], "{sample}/overepressented_sequences_other.txt"), sample=config["sample"])
################################################################################
################################################################################
### Count oligos
### Count oligos
...
...
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