Example input data for the tutorialsΒΆ

To demonstrate the usage of the commands made available in our package, we provide some exampe inpu data that are used in our tutorials. The example inputs are stored in the following to folders:

  • MD_plotting_toolkit/data/:

    • HILLS_2D: A file containing 6 time series. As shown below, there are seven columns in the file HILLS_2D, with the first one containing the data of the independent variable and the remaining containing the time series of the dependent variables.

    • fes_*.dat: Four different files containing free energy as a function of number of waters.

  • MD_plotting_toolkit/tests/sample_inputs:

    • corrupted_HILLS: A corrupted HILLS file.

Below we check the content of the example inputs to get a better sense about them.

[1]:
%%bash
head ../../MD_plotting_toolkit/data/HILLS_2D
#! FIELDS time theta lambda sigma_theta sigma_lambda height biasf
#! SET multivariate false
#! SET kerneltype gaussian
#! SET min_theta -pi
#! SET max_theta pi
      1.000000047497451      1.560902096697373                      0                    0.5                 0.0001      2.535296122765038                     45
      2.000000094994903      1.374514512746895                      0                    0.5                 0.0001      2.482082699954732                     45
      3.000000142492354      1.217669336286091                      0                    0.5                 0.0001      2.437937383689416                     45
      4.000000189989805      1.785660863475474                      0                    0.5                 0.0001      2.416721849636847                     45
      5.000000237487257      1.656332583179113                      0                    0.5                 0.0001      2.347022565098163                     45
[2]:
%%bash
head ../../MD_plotting_toolkit/data/fes_1.dat
#! FIELDS n projection
#! SET min_n -3.08291
#! SET max_n 32.9676
#! SET nbins_n  203
#! SET periodic_n false
   -3.082910000  490.604904318
   -2.904442129  490.588282125
   -2.725974257  490.524435500
   -2.547506386  490.428702125
   -2.369038515  490.285803049

Note that other files in the folder MD_plotting_toolkit/tests/sample_inputs are mainly for unit tests of the modules in this package.