Skip to content
Snippets Groups Projects

Remove unnecessary files in results directory

Merged Dominik Burri requested to merge results_dir into dev
7 unresolved threads
  • use of temp() statements in snakemake rules
    • extract_transcriptome
    • concatenate_transcriptome_and_genome
    • extract_transcripts_as_bed12
    • calculate_TIN_scores
    • star_rpm
    • rename_star_rpm_for_alfa
    • alfa_qc
    • sort_bed_4_big
    • pe_remove_adapters_cutadapt
    • pe_remove_polya_cutadapt
    • remove_adapters_cutadapt
    • remove_polya_cutadapt
  • use of --notemp in test scripts (local and slurm) for successful execution without removing temp files
    • test_alfa
    • test_create_dag_image
    • test_create_rule_graph
    • test_integration_worklow
    • test_integration_workflow_multiple_lanes
  • use of shadow directive in rules
    • star_rpm
    • pe_map_genome_star
    • pe_quantification_salmon
    • pe_genome_quantification_kallisto
    • map_genome_star
    • quantification_salmon
    • genome_quantification_kallisto
  • See comment in #137 (closed) for setting an optional shadow prefix, especially useful in cluster execution
  • See comment in #137 (closed) for impact of disk space savings on a real-world dataset
  • correctly add snakemake {threads} in execution in rules
    • fastqc
    • quantification_kallisto

Closes #137 (closed).

Edited by Dominik Burri

Merge request reports

Pipeline #12113 passed

Pipeline passed for f2169659 on results_dir

Approved by

Merged by BIOPZ-Gypas FoivosBIOPZ-Gypas Foivos 4 years ago (Feb 26, 2021 2:56pm UTC)

Merge details

  • Changes merged into dev with 6b6b2830 (commits were squashed).
  • Deleted the source branch.

Pipeline #12118 passed

Pipeline passed for 6b6b2830 on dev

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
169 169 """
170 170 input:
171 171 genome = lambda wildcards:
172 get_sample(
172 os.path.abspath(get_sample(
  • 169 169 """
    170 170 input:
    171 171 genome = lambda wildcards:
    172 get_sample(
    172 os.path.abspath(get_sample(
    173 173 'genome',
    174 174 search_id='organism',
    175 search_value=wildcards.organism),
    175 search_value=wildcards.organism)),
    176 176
    177 177 gtf = lambda wildcards:
    178 get_sample(
    178 os.path.abspath(get_sample(
  • 1081 1083 ''' Generate ALFA index files from sorted GTF file '''
    1082 1084 input:
    1083 1085 gtf = lambda wildcards:
    1084 get_sample(
    1086 os.path.abspath(get_sample(
  • 203 203 "map_genome",
    204 204 "{sample}.pe.Log.final.out")
    205 205
    206 shadow: "minimal"
    207
    206 208 params:
    207 209 sample_id = "{sample}",
    208 210 index = lambda wildcards:
    209 os.path.join(
    211 os.path.abspath(os.path.join(
  • BIOPZ-Gypas Foivos
  • 151 151 "map_genome",
    152 152 "{sample}.se.Log.final.out")
    153 153
    154 shadow: "minimal"
    155
    154 156 params:
    155 157 sample_id = "{sample}",
    156 158 index = lambda wildcards:
    157 os.path.join(
    159 os.path.abspath(os.path.join(
  • 241 243 search_value=wildcards.sample),
    242 244 "salmon.idx"),
    243 245 gtf = lambda wildcards:
    244 get_sample(
    246 os.path.abspath(get_sample(
  • BIOPZ-Gypas Foivos approved this merge request

    approved this merge request

  • mentioned in issue #137 (closed)

  • Please register or sign in to reply
    Loading