We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3b79e34 + e37a8e7 commit c36147aCopy full SHA for c36147a
modules/metadata.nf
@@ -11,6 +11,16 @@ process MAKE_META_FILE {
11
12
script:
13
"""
14
+ echo "Starting make_meta_file.py"
15
+ echo "Current directory: \$(pwd)"
16
+ echo "Files before:"
17
+ ls -la
18
+ echo "Running: make_meta_file.py $sample_file ${params.data_dir} sample_metadata.tsv"
19
make_meta_file.py $sample_file ${params.data_dir} sample_metadata.tsv
20
+ echo "Exit code: \$?"
21
+ echo "Files after:"
22
23
+ echo "Checking for target file:"
24
+ ls -la sample_metadata.tsv || echo "sample_metadata.tsv not found"
25
26
}
0 commit comments