Newer
Older
# (curl, jq, and singularity/apptainer are preloaded on Puhti)
parallel --col-sep ' ' \
-a {work_dir}/{name}/transfer.txt \
java -Xmx256m \
-jar {globus_path} \
--spring.config.location={globus_parent_path}/config/ \
--spring.profiles.active={namespace} \
# the job _must be_ scheduled on a node with local storage
# it's cleaned up by the system after the job finishes
# can't use --chdir, $TMPDIR is set when the job starts
# run pgsc_calc and calculate some scores!
nextflow run {pgsc_calc_dir} -profile singularity \
--outdir s3://intervene-{namespace}/{name} \
--min_overlap 0.01 \
--max_cpus 40 \
--max_memory "32.GB" \
--parallel \
-with-weblog http://localhost:8000 \
-name {name}
# ------------------------------------------------------------------------------