How To Install crest on Fedora 34

crest is Conformer-Rotamer Ensemble Sampling Tool

Introduction

In this tutorial we learn how to install crest on Fedora 34.

What is crest

CREST is an utility/driver program for the xtb program. Originally it was designed as conformer sampling program, hence the abbreviation Conformer-Rotamer Ensemble Sampling Tool, but now offers also some utility functions for calculations with the GFNn-xTB methods. Generally the program functions as an IO based OMP scheduler (i.e., calculations are performed by the xtb program) and tool for the creation and analysation of structure ensembles. The key procedure implemented in CREST is a conformational search workflow abbreviated as iMTD-GC. The iMTD-GC workflow generates conformer/rotamer ensembles (CREs) by extensive metadynamic sampling (MTD) based on, with an additional genetic z-matrix crossing (GC) step at the end. Other standalone functionalities that are included in CREST are parallel optimization and screening functions for GFNn–xTB, the function to sort (e.g. for NMR equivalencies) externally created ensembles, and some automated procedures for the protonation, deprotonation and tautomerization of structures. The main publication for the CREST program can be found at Phys. Chem. Chem. Phys., 2020, 22, 7169-7192.

We can use yum or dnf to install crest on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install crest.

Install crest on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install crest using dnf by running the following command:

sudo dnf -y install crest

Install crest on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install crest using yum by running the following command:

sudo yum -y install crest

How To Uninstall crest on Fedora 34

To uninstall only the crest package we can use the following command:

sudo dnf remove crest

crest Package Contents on Fedora 34

/usr/bin/crest
/usr/lib/.build-id
/usr/lib/.build-id/97
/usr/lib/.build-id/97/393cf2fafc67f9ce65b425473911f2a5da21bf
/usr/share/doc/crest
/usr/share/doc/crest/README.md
/usr/share/licenses/crest
/usr/share/licenses/crest/LICENSE

References

Summary

In this tutorial we learn how to install crest on Fedora 34 using yum and dnf.