File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -91,10 +91,3 @@ nextflow_pipeline {
9191 }
9292
9393}
94-
95- def Utils.getRecursiveFileNames(fileOrDir, outputDir) {
96- if(file(fileOrDir.toString()).isDirectory()) {
97- return fileOrDir.list().collect { Utils.getRecursiveFileNames(it, outputDir) }
98- }
99- return fileOrDir.toString().replace("${outputDir}/", "")
100- }
Original file line number Diff line number Diff line change @@ -67,10 +67,3 @@ nextflow_pipeline {
6767 }
6868
6969}
70-
71- def Utils.getRecursiveFileNames(fileOrDir, outputDir) {
72- if(file(fileOrDir.toString()).isDirectory()) {
73- return fileOrDir.list().collect { Utils.getRecursiveFileNames(it, outputDir) }
74- }
75- return fileOrDir.toString().replace("${outputDir}/", "")
76- }
Original file line number Diff line number Diff line change @@ -38,10 +38,3 @@ nextflow_pipeline {
3838 }
3939
4040}
41-
42- def Utils.getRecursiveFileNames(fileOrDir, outputDir) {
43- if(file(fileOrDir.toString()).isDirectory()) {
44- return fileOrDir.list().collect { Utils.getRecursiveFileNames(it, outputDir) }
45- }
46- return fileOrDir.toString().replace("${outputDir}/", "")
47- }
Original file line number Diff line number Diff line change @@ -131,10 +131,3 @@ nextflow_pipeline {
131131 }
132132
133133}
134-
135- def Utils.getRecursiveFileNames(fileOrDir, outputDir) {
136- if(file(fileOrDir.toString()).isDirectory()) {
137- return fileOrDir.list().collect { Utils.getRecursiveFileNames(it, outputDir) }
138- }
139- return fileOrDir.toString().replace("${outputDir}/", "")
140- }
Original file line number Diff line number Diff line change @@ -38,10 +38,3 @@ nextflow_pipeline {
3838 }
3939
4040}
41-
42- def Utils.getRecursiveFileNames(fileOrDir, outputDir) {
43- if(file(fileOrDir.toString()).isDirectory()) {
44- return fileOrDir.list().collect { Utils.getRecursiveFileNames(it, outputDir) }
45- }
46- return fileOrDir.toString().replace("${outputDir}/", "")
47- }
Original file line number Diff line number Diff line change @@ -67,10 +67,3 @@ nextflow_pipeline {
6767 }
6868
6969}
70-
71- def Utils.getRecursiveFileNames(fileOrDir, outputDir) {
72- if(file(fileOrDir.toString()).isDirectory()) {
73- return fileOrDir.list().collect { Utils.getRecursiveFileNames(it, outputDir) }
74- }
75- return fileOrDir.toString().replace("${outputDir}/", "")
76- }
You can’t perform that action at this time.
0 commit comments