Remove unnecessary files in results directory
7 unresolved threads
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
Activity
changed milestone to %pipeline
@burri0000 Do you mind if we merge first the changes from @bakma in (!79 (merged)) because it will be a bit more complicated to resolve issues in the other branch, rather than here? (I know that you opened first the pull request).
@burri0000 Can you please pull
dev
and adjust the changes. Then we can merge.
added Blocked label
added 3 commits
-
bc168805...736d1a3d - 2 commits from branch
dev
- c2ed5f3d - Merge branch 'dev' into results_dir
-
bc168805...736d1a3d - 2 commits from branch
removed Blocked label
169 169 """ 170 170 input: 171 171 genome = lambda wildcards: 172 get_sample( 172 os.path.abspath(get_sample( @burri0000 In general it looks good to me. The only thing I don't get is why do we need to specify an absolute path here.
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( - Resolved by BIOPZ-Gypas Foivos
mentioned in issue #137 (closed)
Please register or sign in to reply