@@ -71,7 +71,7 @@ nextflow_pipeline {
7171 def stable_name_authentication = getAllFilesFromDir("$outputDir/authentication" , includeDir: false , ignore: null , ignoreFile: null , include: unstable_patterns_auth)
7272
7373 // Damage manipulation
74- def stable_content_damage_manipulation = getAllFilesFromDir("$outputDir/damage_manipulation" , includeDir: false , ignore: unstable_patterns_auth , ignoreFile: null , include: ['*', '**/*'] )
74+ def stable_content_damage_manipulation = getAllFilesFromDir("$outputDir/damage_manipulation" , includeDir: false , ignore: ['**/*.{bam,bai}'] , ignoreFile: null , include: ['*', '**/*'] )
7575 def stable_name_damage_manipulation = getAllFilesFromDir("$outputDir/damage_manipulation" , includeDir: false , ignore: null , ignoreFile: null , include: ['**/*.{bam,bai}'] )
7676
7777 // Deduplication - TODO -> snapshot both lists are empty!?
@@ -83,8 +83,8 @@ nextflow_pipeline {
8383 def stable_name_final_bams = getAllFilesFromDir("$outputDir/final_bams" , includeDir: false , ignore: null , ignoreFile: null , include: ['**/*.{bam,bai}'] )
8484
8585 // Genotyping
86- def stable_content_genotyping = getAllFilesFromDir("$outputDir/genotyping" , includeDir: false , ignore: null , ignoreFile: null , include: ['**/*'] )
87- def stable_name_genotyping = getAllFilesFromDir("$outputDir/genotyping" , includeDir: false , ignore: null , ignoreFile: null , include: ['**/*.tbi '] )
86+ def stable_content_genotyping = getAllFilesFromDir("$outputDir/genotyping" , includeDir: false , ignore: ['**/*.{geno,ind,snp,tsv}'] , ignoreFile: null , include: ['**/*'] )
87+ def stable_name_genotyping = getAllFilesFromDir("$outputDir/genotyping" , includeDir: false , ignore: null , ignoreFile: null , include: ['**/*.{geno,ind,snp,tsv} '] )
8888
8989 // Mapping (incl. bam_input flasgstat)
9090 def stable_content_mapping = getAllFilesFromDir("$outputDir/mapping" , includeDir: false , ignore: null , ignoreFile: null , include: ['**/*.flagstat'] )
@@ -103,10 +103,6 @@ nextflow_pipeline {
103103 def stable_content_readfiltering = getAllFilesFromDir("$outputDir/read_filtering" , includeDir: false , ignore: null , ignoreFile: null , include: ['**/*.flagstat'] )
104104 def stable_name_readfiltering = getAllFilesFromDir("$outputDir/read_filtering" , includeDir: false , ignore: null , ignoreFile: null , include: ['**/*.{bam,bai}'] )
105105
106- // Samtools
107- def stable_content_samtools = getAllFilesFromDir("$outputDir/samtools" , includeDir: false , ignore: unstable_patterns_auth , ignoreFile: null , include: ['*', '**/*'] )
108- def stable_name_samtools = getAllFilesFromDir("$outputDir/samtools" , includeDir: false , ignore: null , ignoreFile: null , include: ['**/*.{bam,bai}'] )
109-
110106 // MultiQC
111107 def stable_name_multiqc = getAllFilesFromDir("$outputDir/multiqc" , includeDir: false , ignore: null , ignoreFile: null , include: ['*', '**/*'] )
112108
@@ -133,7 +129,6 @@ nextflow_pipeline {
133129 { assert snapshot( stable_content_metagenomics , stable_name_metagenomics*.name ).match("metagenomics") },
134130 { assert snapshot( stable_content_preprocessing , stable_name_preprocessing*.name ).match("preprocessing") },
135131 { assert snapshot( stable_content_readfiltering , stable_name_readfiltering*.name ).match("read_filtering") },
136- { assert snapshot( stable_content_samtools , stable_name_samtools*.name ).match("samtools") },
137132 { assert snapshot( stable_name_multiqc*.name ).match("multiqc") },
138133
139134 // Versions
0 commit comments