Skip to content
Snippets Groups Projects
Commit 63e1a63c authored by BIOPZ-Gypas Foivos's avatar BIOPZ-Gypas Foivos
Browse files

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
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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment