Skip to content
Snippets Groups Projects
Commit 07510638 authored by Gael  MILLOT's avatar Gael MILLOT
Browse files

trap removed in README because the best is to deal it with .profile

parent 3f684e32
No related branches found
No related tags found
No related merge requests found
...@@ -165,10 +165,8 @@ Modify the second line of the code below, and run from where the *main.nf* and * ...@@ -165,10 +165,8 @@ Modify the second line of the code below, and run from where the *main.nf* and *
<pre> <pre>
HOME_INI=$HOME HOME_INI=$HOME
HOME="${HELIXHOME}/micmac/" # $HOME changed to allow the creation of .nextflow into /$HELIXHOME/micmac/, for instance. See NFX_HOME in the nextflow software script HOME="${HELIXHOME}/micmac/" # $HOME changed to allow the creation of .nextflow into /$HELIXHOME/micmac/, for instance. See NFX_HOME in the nextflow software script
trap '' SIGINT
nextflow run --modules ${MODULES} main.nf -c nextflow.config nextflow run --modules ${MODULES} main.nf -c nextflow.config
HOME=$HOME_INI HOME=$HOME_INI
trap SIGINT
</pre> </pre>
<br /><br /> <br /><br />
...@@ -180,10 +178,8 @@ Modify the first and third lines of the code below, and run (results will be whe ...@@ -180,10 +178,8 @@ Modify the first and third lines of the code below, and run (results will be whe
VERSION="v1.0" VERSION="v1.0"
HOME_INI=$HOME HOME_INI=$HOME
HOME="${HELIXHOME}/micmac/" # $HOME changed to allow the creation of .nextflow into /$HELIXHOME/micmac/, for instance. See NFX_HOME in the nextflow software script HOME="${HELIXHOME}/micmac/" # $HOME changed to allow the creation of .nextflow into /$HELIXHOME/micmac/, for instance. See NFX_HOME in the nextflow software script
trap '' SIGINT
nextflow run --modules ${MODULES} -hub pasteur gmillot/micmac -r $VERSION -c $HOME/nextflow.config nextflow run --modules ${MODULES} -hub pasteur gmillot/micmac -r $VERSION -c $HOME/nextflow.config
HOME=$HOME_INI HOME=$HOME_INI
trap SIGINT
</pre> </pre>
<br /><br /> <br /><br />
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment