Skip to content

Commit 1b5822b

Browse files
committed
update_to_2.4.2
1 parent 1405272 commit 1b5822b

File tree

7 files changed

+22
-15
lines changed

7 files changed

+22
-15
lines changed

source/data/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ echo "Downloading TractoFlow..."
44
nextflow pull scilus/tractoflow
55
echo "Done: TractoFlow downloaded."
66
echo "Downloading TractoFlow Singularity..."
7-
wget -q --show-progress https://scil.usherbrooke.ca/containers/scilus_1.4.2.sif
7+
wget -q --show-progress https://scil.usherbrooke.ca/containers/scilus_1.5.0.sif
88
echo "Done: TractoFlow Singularity downloaded."

source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Welcome to the TractoFlow user documentation!
22
=============================================
33

44
.. note::
5-
New release available: 2.4.1.
5+
New release available: 2.4.2.
66

77
TractoFlow pipeline is developed by the Sherbrooke Connectivity Imaging Lab (`SCIL`_)
88
in order to process diffusion MRI dataset from the raw data to the tractography.

source/installation/install.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Easy install method
77
Enter this command in your terminal (it downloads the container and TractoFlow code in the current directory - Make sure nextflow is already installed before running this command):
88
::
99

10-
curl -s https://tractoflow-documentation.readthedocs.io/en/2.4.1/install.sh | bash
10+
curl -s https://tractoflow-documentation.readthedocs.io/en/2.4.2/install.sh | bash
1111

1212

1313
Detailed Installation
@@ -56,13 +56,13 @@ Download the last release of the Singularity container for TractoFlow:
5656

5757
::
5858

59-
$> wget https://scil.usherbrooke.ca/containers/scilus_1.4.2.sif
59+
$> wget https://scil.usherbrooke.ca/containers/scilus_1.5.0.sif
6060

6161
Or if you have sudo privileges
6262

6363
::
6464

65-
$> sudo singularity build scilus_1.4.2.sif docker://scilus/scilus:1.4.2
65+
$> sudo singularity build scilus_1.5.0.sif docker://scilus/scilus:1.5.0
6666

6767
For developers
6868
##############
@@ -81,7 +81,7 @@ Then, you can build the singularity image:
8181

8282
::
8383

84-
$> singularity build scilus_1.4.2.sif singularity_scilus.def
84+
$> singularity build scilus_1.5.0.sif singularity_scilus.def
8585

8686
.. _docker-tractoflow:
8787

@@ -95,6 +95,6 @@ Download the last release of the Docker container for TractoFlow:
9595

9696
::
9797

98-
$> docker pull scilus/scilus:1.4.2
98+
$> docker pull scilus/scilus:1.5.0
9999

100100
Please see :ref:`profiles` section to use `macos` profile.

source/pipeline/launch.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ To run the pipeline, use the following command:
99
::
1010

1111
# With Singularity
12-
$> nextflow run tractoflow -r 2.4.1 --bids input_bids -with-singularity scilus_1.4.2.sif -resume
12+
$> nextflow run tractoflow -r 2.4.2 --bids input_bids -with-singularity scilus_1.5.0.sif -resume
1313
# Or
14-
$> nextflow run tractoflow -r 2.4.1 --input input_folder -with-singularity scilus_1.4.2.sif -resume
14+
$> nextflow run tractoflow -r 2.4.2 --input input_folder -with-singularity scilus_1.5.0.sif -resume
1515

1616
# With Docker
17-
$> nextflow run tractoflow -r 2.4.1 --bids input_bids -with-docker scilus/scilus:1.4.2 -resume
17+
$> nextflow run tractoflow -r 2.4.2 --bids input_bids -with-docker scilus/scilus:1.5.0 -resume
1818
# Or
19-
$> nextflow run tractoflow -r 2.4.1 --input input_folder -with-docker scilus/scilus:1.4.2 -resume
19+
$> nextflow run tractoflow -r 2.4.2 --input input_folder -with-docker scilus/scilus:1.5.0 -resume
2020

2121
If you want to skip steps already processed by an anterior run, you can add `-resume` option in the command line.
2222

@@ -38,7 +38,7 @@ to be executed with ``sbatch``.
3838
#SBATCH --mem=0
3939
#SBATCH --time=48:00:00
4040

41-
nextflow -c singularity.conf run tractoflow -r 2.4.1 --input input_folder --dti_shells "DTI_SHELLS" --fodf_shells "FODF_SHELLS" -with-singularity singularity_name.sif -resume
41+
nextflow -c singularity.conf run tractoflow -r 2.4.2 --input input_folder -with-singularity singularity_name.sif -resume
4242

4343
To launch on multiple nodes, you must to use the MPI option that use Ignite executor.
4444
The following example use 2 nodes with 32 threads on each nodes. The follwing lines
@@ -55,7 +55,7 @@ must be saved in ``.sh`` file (e.g. ``cmd.sh``) to be executed with ``sbatch``.
5555

5656
export NXF_CLUSTER_SEED=$(shuf -i 0-16777216 -n 1)
5757

58-
srun nextflow -c singularity.conf run tractoflow -r 2.4.1 --input input_folder --dti_shells "DTI_SHELLS" --fodf_shells "FODF_SHELLS" -with-singularity singularity_name.sif -with-mpi -resume
58+
srun nextflow -c singularity.conf run tractoflow -r 2.4.2 --input input_folder -with-singularity singularity_name.sif -with-mpi -resume
5959

6060
To launch the pipeline on the HPC:
6161

source/pipeline/options.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Options
22
=======
33

44
To display the options of Tractoflow, please use
5-
``nextflow run tractoflow -r 2.4.1 --help``.
5+
``nextflow run tractoflow -r 2.4.2 --help``.
66

77
Optional BIDS arguments
88
------------

source/pipeline/profiles.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ To select one or multiple profiles, please use the ``-profile`` option. For exam
77

88
::
99

10-
$> nextflow run tractoflow -r 2.4.1 --input input_folder -profile macos,fully_reproducible -with-singularity singularity_name.sif -resume
10+
$> nextflow run tractoflow -r 2.4.2 --input input_folder -profile macos,fully_reproducible -with-singularity singularity_name.sif -resume
1111

1212
Profiles available
1313
------------------

source/reference/changelog.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
2.4.2
5+
########
6+
Date: March 2023
7+
8+
New features
9+
- Tractoflow is not fully working with a python 3.10 environnment with scilpy 1.5.0
10+
411
2.4.1
512
########
613
Date: November 2022

0 commit comments

Comments
 (0)