Files
digital-patients/debug_pvc.nf

21 lines
537 B
Plaintext

nextflow.enable.dsl=2
process DEBUG {
container 'harbor.cluster.omic.ai/omic/digital-patients/synthea:cudf'
script:
"""
echo "MOUNT_CHECK"
mount | grep omic || echo "no omic mounts"
echo "---"
ls /omic/ 2>&1
echo "---"
ls /omic/eureka/ 2>&1 | head -20
echo "---"
ls /omic/eureka/digital-patients/ 2>&1 | head -20
echo "---"
echo "WRITE_TEST"
mkdir -p /omic/eureka/digital-patients/test_dir 2>&1 && echo "MKDIR_OK" || echo "MKDIR_FAIL"
echo "END"
"""
}
workflow { DEBUG() }