Closed sinarueeger closed 4 years ago
You can use #145 that uses that variable correctly. Seems String phenoname = basename(phenotype_name,".gz") is a remnant when phename was deduced from filename. It does not do anything for the string as it is so does not hurt. I'll leave that for @Lipastomies
This should not be in the wdl files anymore (as of current master b980f79) . Closing.
I am using the parallel wdl, and sometimes it is failing (not sure why). The failing is not the problem though, its whats reported.
The stderr file then displays the following:
(see original stderr file here)
https://github.com/FINNGEN/autoreporting/blob/master/wdl/autoreporting.wdl#L173 is the only instance where
phenoname
is used.phenoname
is defined asString phenoname = basename(phenotype_name,".gz")
,phenotype_name
being the first column of the tsv file, which should be a string. So not sure what thebasename gz
is doing there.Couldn't you just drop the
phenoname
variable all together and replace it withphenotype_name
?