Macromolecule Coarse-Graining Tool


Download the Tool

Documentation

Here are the requirements, along with instructions on how to use the tool, including file formatting and the expected output format.

This project implements a Java application with multiple classes, including:

  • CGPartitioning
  • Octree
  • OctreeCoordinateItem
  • OctreeDataItem
  • PointWithCharge

The project uses a Makefile to simplify the process of compiling, running, and cleaning.

Requirements

Usage

From the root directory, you can manually compile and run the project using purely Java.

Create a build directory and compile the Java classes:

mkdir -p build
javac -d build src/*.java

Run the main project with your 2 input files and 1 output file as arguments (the arguments for input and output files should be in that order: point with charge first, control points file second, and output file name last):

java -cp build src.CGPartitioning pointsWithCharge1MYK.txt controlPoints1MYK.txt irrParts_Output.txt

Alternatively, the provided Makefile automates common tasks. Below are the available commands:

Available Commands

  • make compile
    Compile all Java files into /build directory.
  • make run ARGS='points_with_charge_file control_point_file output_file'
    Run the Java project from /build/src/CGPartitioning with argument files.
    Example:
    make run ARGS='pointsWithCharge1MYK.txt controlPoints1MYK.txt irrParts_Output.txt
  • make clean
    Remove directory /build with all compiled files.
  • make help
    Show help message with all available make commands for this project.

Files Formatting

Input Files Format

The project requires two input text files with specific formats. These two files must be provided as command-line arguments. The first file to provide is the Point Charge File, while the second is the Control Point File.

1. Point Charge File

Contains coordinates paired with charge values. Each entry is enclosed in double curly braces ({{}}), where the first part represents the coordinates (X, Y, Z), and the second part specifies the charge. Each set of coordinates paired with charge values is separated by a newline.

Format Example:

{{X1, Y1, Z1 }, Charge1}
{{X2, Y2, Z2 }, Charge2}
{{X3, Y3, Z3 }, Charge3}
...

Simple Example:

{{39.266, 59.555, 46.185}, -0.3}
{{38.125, 60.364, 46.626}, 0.21}
{{36.859, 59.512, 46.734}, 0.51}
{{36.625, 58.613, 45.922}, -0.51}

2. Control Point File

Contains a list of coordinates, each enclosed in curly braces ({}). Each coordinate is represented by three floating-point numbers (X, Y, Z). Each set of coordinates is separated by a newline.

Format Example:

{X1, Y1, Z1}
{X2, Y2, Z2}
{X3, Y3, Z3}
...

Simple Example:

{9.455, 47.808, 48.53}
{10.554, 47.771, 47.575}
{9.704, 47.365, 48.096}

Output File Format

Your data will be stored in a text file that you'll provide as a third argument in your command-line. The generic format is an array of a 2D array of 3 floating-point coordinates, each paired with charge value. The last two indices of the outer array represent the control points for the second-to-last element, and the Euclidean distance is the final element of the array. Each new line represents a new set of data that contains the previously described structure.

Format Example:

{{{{X1, Y1, Z1}, Charge1}, {{X2, Y2, Z2}, Charge2}, {{X3, Y3, Z3}, Charge3}, {{Xn, Yn, Zn}, Chargen}}, index1, distance1}
{{{{X1, Y1, Z1}, Charge1}}, index2, distance2}
{{{{X1, Y1, Z1}, Charge1}, {{Xn, Yn, Zn}, Chargen}}, index3, distance3}
...

Simple Example:

{{{{36.625, 58.613, 45.922}, -0.51}, {{38.125, 60.364, 46.626}, 0.21}, {{39.266, 59.555, 46.185}, -0.3}, {{36.859, 59.512, 46.734}, 0.51}}, 9716, 2.8898307908941634}
{{{{37.892, 61.564, 45.668}, -0.18}, {{39.075, 62.511, 45.568}, -0.18}, {{37.103, 62.07, 46.006}, 0.09}, {{37.7, 61.194, 44.764}, 0.09}}, 11715, 1.999496936731834}
{{{{38.332, 60.749, 47.532}, 0.1}}, 11362, 1.0337030521382882}