File: README.md

package info (click to toggle)
openchemlib 2023.1.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 18,496 kB
  • sloc: java: 176,999; xml: 256; sh: 10; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 830 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Fractal dimension calculation
The fractal dimension program calculates the fractal dimension for molecules. The main class is
com.actelion.research.chem.properties.fractaldimension.FractalDimensionMoleculeMain.java

Input is a file with a list of SMILES strings. Output is a tab separated file with a header line. One line is produced
for each SMILES string in the result file.

## Java command line example to run the calculation on Linux
java -server -Xmx1g -classpath openChemLib.jar com.actelion.research.chem.properties.fractaldimension.FractalDimensionMoleculeMain -i /home/user/data/adamantane.smi -w /home/user/tmp 

The calculation of fractal dimensions is memory demanding. To calculate the five example example molecules the -Xmx parameter should be set to 3GB. Without strychnine 1GB of memory will be sufficient.