From 2d160e051c7e618bd801ecf5f5b9ba5ba7f8d2a3 Mon Sep 17 00:00:00 2001 From: neuronflow Date: Fri, 29 Mar 2024 22:15:45 +0100 Subject: [PATCH] move extending down Signed-off-by: neuronflow --- README.md | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index eaf65dc..504c278 100644 --- a/README.md +++ b/README.md @@ -30,16 +30,6 @@ source venv_ereg/bin/activate ## using native python venv pip install ereg ``` -## Extending eReg - -To extend eReg, you first need to install **eReg** from source. Clone the repository and install the package: - -```sh -git clone https://github.com/BrainLesion/eReg.git -cd eReg -pip install -e . -``` - ## Usage **eReg** can be used via the command line or as a Python package. @@ -119,4 +109,15 @@ ssim = registration_function( eReg's registration and transformation parameters can be customized using a configuration file. The configuration file is a YAML file that contains the parameters for the registration. The default configuration file is present [here](https://github.com/BrainLesion/eReg/blob/main/ereg/configurations/sample_config.yaml). More details on the parameters and their options can be found in the configuration file itself. + +## Extending eReg + +To extend eReg, you first need to install **eReg** from source. Clone the repository and install the package: + +```sh +git clone https://github.com/BrainLesion/eReg.git +cd eReg +pip install -e . +``` +