You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.
Discovered as a side effect of #120
yaml
format samplesheets are currently not actually vaildated by thevalidateFile
:nf-validation/plugins/nf-validation/src/main/nextflow/validation/SchemaValidator.groovy
Lines 188 to 198 in ac5812a
and
nf-validation/plugins/nf-validation/src/main/nextflow/validation/SchemaValidator.groovy
Lines 416 to 426 in ac5812a
This doesn't throw an error but an empty list is passed to
validateFile
in theyaml
case instead of thefileContent
.The fix should be as simple as switching to
fileContentCasted = new Yaml().load((samplesheetFile.text))
.The text was updated successfully, but these errors were encountered: