Skip to content
Snippets Groups Projects
Verified Commit 8d5f0314 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

clarify example.pbs

parent 8a6217da
No related branches found
No related tags found
No related merge requests found
......@@ -15,15 +15,23 @@
#$ -l sps=1 ## acces /sps directory
#####################################
# change to your username !
SCRATCH=/sps/lbmc/<user>/
# change to your project name !
PROJECT=<project>
#change to your project version !
PIPELINE=<pipeline_name>
#NF version to user
NF_VERSION=19.04
NF=/pbs/throng/lbmc/cl7/nextflow/${NF_VERSION}/nextflow
# change to your username
SCRATCH=/sps/lbmc/<user>/
# change to your project / pipeline !
PIPELINE=${SCRATCH}/<project>/src/<pipeline>.nf
# change to your project / pipeline !
CONFIG=${SCRATCH}/<project>/src/<pipeline>.config
PIPELINE=${SCRATCH}/${PROJECT}/src/${PIPELINE}.nf
CONFIG=${SCRATCH}/${PROJECT}/src/${PIPELINE}.config
${NF} ${PIPELINE} -c ${CONFIG} -profile ccin2p3 \
--fasta "${SCRATCH}/<project>/data/fasta" \
-w "${SCRATCH}"
-w "${SCRATCH}/${PROJECT}/work/" \
-with-report "${SCRATCH}/${PROJECT}/results/${PIPELINE}_report.html" \
-with-timeline "${SCRATCH}/${PROJECT}/results/${PIPELINE}_timeline.html" \
-with-dag "${SCRATCH}/${PROJECT}/results/${PIPELINE}_dag.pdf"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment