package org.cellocad.MIT.dnacompiler; public class CelloMain { /** * Cello main: this is the function that is called to run Cello * * @param args */ public static void main(String[] args) { DNACompiler dnaCompiler = new DNACompiler(); dnaCompiler.run(args); } }