Difference between revisions of "Installation instructions"

From AutoMeKin
Jump to navigation Jump to search
(Windows10)
(Tarball)
(11 intermediate revisions by the same user not shown)
Line 108: Line 108:
 
The program runs using two levels of theory: semiempirical (or Low-Level LL) and ab initio/DFT (or High-Level HL). So far, the only program interfaced with amk to perform the ab initio/DFT calculations is G09. Therefore, if you want to perform the HL calculations G09 should be installed and should run like in this example:  
 
The program runs using two levels of theory: semiempirical (or Low-Level LL) and ab initio/DFT (or High-Level HL). So far, the only program interfaced with amk to perform the ab initio/DFT calculations is G09. Therefore, if you want to perform the HL calculations G09 should be installed and should run like in this example:  
  
<code>g09<inputfile>outputfile</code>
+
<code>g09 <inputfile> outputfile</code>
  
 
These packages might also be useful to analyze the results:
 
These packages might also be useful to analyze the results:
Line 129: Line 129:
 
<code>./configure</code>
 
<code>./configure</code>
  
This will install amk in $HOME/amk-20XX by default. If you want to install it in a different directory, type:
+
This will install amk in <code>$HOME/amk-20XX</code> by default. If you want to install it in a different directory, type:
  
 
<code>./configure --prefix=path_to_program</code>
 
<code>./configure --prefix=path_to_program</code>
Line 141: Line 141:
 
The last command (<code>make clean</code>) is only necessary if you want to remove from the src directory the object files and executables created in the compilation process.
 
The last command (<code>make clean</code>) is only necessary if you want to remove from the src directory the object files and executables created in the compilation process.
  
For convenience, and once “Environment Modules” has been installed, you should add the following line to your ''.bashrc'' file:
+
For convenience, and once “Environment Modules” has been installed, you should add the following line to your <code>.bashrc</code> file:
  
''module use path_to_program/modules''
+
<code>module use path_to_program/modules</code>
  
where ''path_to_program'' is the path where you installed amk (e.g., ''$HOME/amk-20XX'').
+
where <code>path_to_program</code> is the path where you installed amk (e.g., <code>$HOME/amk-20XX</code>).
  
 
==Windows10==
 
==Windows10==
Installing and running AutoMeKin in Windows10 is possible. Just follow these instructions:</br>
 
1) Install WSL2 ([https://docs.microsoft.com/en-us/windows/wsl/wsl2-install instructions here])</br>
 
2) Install Ubuntu18.04 LTS (which can be obtained from Microsoft Store).</br>
 
3) Download the autoinstaller and follow the instructions above [[Media:Automekin.sh| Automekin.sh ]]</br>
 
  
==Running the test==
+
Installing and running AutoMeKin in Windows10 is possible. Just follow these steps:
 +
 
 +
1) Install WSL2 ([https://docs.microsoft.com/en-us/windows/wsl/wsl2-install instructions here])
 +
 
 +
2) Install Ubuntu18.04 LTS (which can be obtained from Microsoft Store).
 +
 
 +
3) Download the autoinstaller [[Media:Automekin.sh| Automekin.sh]] to your <code>$HOME</code>, open an Ubuntu terminal, and run the autoinstaller as indicated above:
 +
 
 +
<code>chmod +x Automekin.sh</code>
 +
 
 +
<code>./Automekin.sh</code>
 +
 
 +
==Running the tests==
  
 
To run the tests follow these steps:
 
To run the tests follow these steps:

Revision as of 12:29, 5 May 2020

Auto installer

This is the easiest way to use AutoMeKin. The auto installer script installs singularity in your computer and downloads the last release container image from sylabs (https://cloud.sylabs.io/library/emartineznunez) as $HOME/automekin2020_<tag>.sif. Note that this is done only the first time you use it unless a new image is available. Then, the script will detect singularity and the image (that must be located in your $HOME) and will only start an instance of the container.

1) Download AutoMeKin's auto installer script Automekin.sh

2) Make the script executable:

chmod +x Automekin.sh

3) Run the script:

./Automekin.sh

Note that depending on your Linux configuration, before running the autoinstaller you might need to change some parameters which will require admin or root privilege. If that is the case and once you changed the parameters with your admin or root accounts, no further admin or root privilege will be needed. Return to your user account and run the auto installer again.

4) Once the above steps are completed, singularity will be installed under /tmp/software folder and an instance of the container will be started using a sandbox image deployed under /tmp/selfextract.XXXXXX folder (where XXXXXX is a randomly generated character sequence). The container comes with all AutoMeKin's tools installed in $AMK plus vim, gnuplot and molden which can be run from the container. A bash shell session under $HOME will start under the deployed instance. Note that you can open new sessions and access AutoMeKin's output files from your Linux environment and use your own tools as well.

5) To exit the container just type:

exit

6) Once your calculations are done, remember to stop the instance:

./Automekin.sh stop

Singularity container

If singularity is already installed in your computer, you can obtain the container from sylabs. First check what the latest image (Tag) is by typing:

singularity search automekin2020

and replace <Tag> below by that number. Then, from your $HOME type:

singularity pull library://emartineznunez/default/automekin2020:<Tag>

You can start an instance of the container and run it using:

singularity instance start automekin2020_<Tag>.sif automekin
singularity run instance://automekin

which will allow you to run low-level scripts. You can stop the instance using:

singularity instance stop automekin

Note, however, that if you want to use g09 you must bind it to the container. To help you do so, we created this script Singularityg09.sh , which should be run with the complete path to the sif file as argument as in the example:

Singularityg09.sh $HOME/automekin2020_<Tag>.sif

Note that Singularityg09.sh will start a new instance of the container every time it is executed. To list the instances use:

singularity instance list

And stop them as indicated above.

Tarball

If you do not want to use singularity, you can install the code following the steps indicated in this section.

Download the tarball

Untar and unzip the file:

tar xvfz Amk-SOURCE-20XX.tar.gz


Installing dependencies

Before installing amk for the first time, be aware that the following packages are needed:

- GNU Bash

- GNU bc

- environment-modules

- GNU Awk (gawk)

- GNU C Compiler (gcc)

- Gnuplot

- GNU Fortran Compiler (gfortran)

- GNU Parallel

- SQLite (version >= 3)

- Zenity

You can install the missing ones manually, or you can use the scripts located in amk-SOURCE-20XX and called install-required-packages-distro.sh (where distro=ubuntu-16.4lts, centos7 or sl7), which will do the work for you.The ubuntu-16.4lts script installs all dependencies, but for the RHEL derivatives (centos7 and sl7) you have to install parallel separately, and you have two choices:

a) install-gnu-parallel-from-source.sh. This script installs parallel latest version from source thanks to Ole Tange (the author). Also it can fallback to a user private installation into $HOME/bin if you have not administrator permisions to install it globally.

b) install-gnu-parallel-from-epel.sh. Enables the EPEL repository and installs parallel from it.

The program employs python3 and the following python3 libraries are needed (which can be easily installed with pip):

- ASE

- Matplotlib

- NetworkX

- NumPy

- SciPy

The program runs using two levels of theory: semiempirical (or Low-Level LL) and ab initio/DFT (or High-Level HL). So far, the only program interfaced with amk to perform the ab initio/DFT calculations is G09. Therefore, if you want to perform the HL calculations G09 should be installed and should run like in this example:

g09 <inputfile> outputfile

These packages might also be useful to analyze the results:

- molden

- sqlitebrowser


Installation

Once the above packages are installed:

go to the amk-SOURCE-20XX folder.

cd amk-SOURCE-20XX

Now type:

./configure

This will install amk in $HOME/amk-20XX by default. If you want to install it in a different directory, type:

./configure --prefix=path_to_program

Finally, complete the installation:

make
make install
make clean

The last command (make clean) is only necessary if you want to remove from the src directory the object files and executables created in the compilation process.

For convenience, and once “Environment Modules” has been installed, you should add the following line to your .bashrc file:

module use path_to_program/modules

where path_to_program is the path where you installed amk (e.g., $HOME/amk-20XX).

Windows10

Installing and running AutoMeKin in Windows10 is possible. Just follow these steps:

1) Install WSL2 (instructions here)

2) Install Ubuntu18.04 LTS (which can be obtained from Microsoft Store).

3) Download the autoinstaller Automekin.sh to your $HOME, open an Ubuntu terminal, and run the autoinstaller as indicated above:

chmod +x Automekin.sh

./Automekin.sh

Running the tests

To run the tests follow these steps:

1) Load the module (only if you do not use singularity):

module load amk/20XX

2) Run the script if amk has been installed in $HOME:

run_test.sh

or

run_test.sh --prefix=path_to_program

otherwise. For instance, if you use singularity, AutoMeKin is installed in $AMK and therefore you should use:

run_test.sh --prefix=$AMK

The results of each test will be gathered in a different directory.

If you want to run a subset of tests use the following:

run_test.sh --tests=FA, FAthermo

which will run FA and FAthermo tests only. These are the tests available in this version: assoc, rdiels_alder, diels_alder, FA_biasH2, FA_biasH2O, FA_bxde, FA_singletraj, FA, FAthermo, FA_programopt, vdW and FA_extforce.

The --prefix and --tests options can be used simultaneously.

Note that each each test takes from a few seconds to several minutes.

Older versions

Download the tarball for the 2018 version

And follow the instructions given above (tarball).

Download tutorial2018


Return to AutoMeKin