We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b20f487 commit 8024c7fCopy full SHA for 8024c7f
notebooks/Snakemake/aws-parallel-cluster-files/hello-world.slurm
@@ -0,0 +1,9 @@
1
+#!/bin/bash
2
+#SBATCH --job-name=hello-world
3
+#SBATCH --output=hello-world.out
4
+#SBATCH --error=hello-world.err
5
+#SBATCH --ntasks=1
6
+#SBATCH --time=00:01:00
7
+
8
+echo "Hello, World!" > ~/workdir/hello-world.out
9
+echo "This job ran on node: $(hostname)" >> /home/workdir/scripts/hello-world.out
0 commit comments