How To Install smoldyn on CentOS 7

In this tutorial we learn how to install smoldyn on CentOS 7. smoldyn is A particle-based spatial stochastic simulator

Introduction

In this tutorial we learn how to install smoldyn on CentOS 7.

What is smoldyn

Smoldyn is a computer program for cell-scale biochemical simulations. It simulates each molecule of interest individually to capture natural stochasticity and to yield nanometer-scale spatial resolution. It treats other molecules implicitly, enabling it to simulate hundreds of thousands of molecules over several minutes of real time. Simulated molecules diffuse, react, are confined by surfaces, and bind to membranes much as they would in a real biological system. It is more accurate and faster than other particle-based simulators. Smoldyn’s unique features include experimenter" who can manipulate or measure the simulated system, support for spatial compartments, molecules with excluded volume, and simulations in 1, 2, or 3 dimensions.

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

Install smoldyn on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install smoldyn

Install smoldyn on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

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

sudo dnf -y install smoldyn

How To Uninstall smoldyn on CentOS 7

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

sudo dnf remove smoldyn

References

Summary

In this tutorial we learn how to install smoldyn on CentOS 7 using yum and dnf.