Package com.Ostermiller.util

Examples of com.Ostermiller.util.CSVPrinter.writeln()


      final AdductType[] adducts) throws IOException {

    final CSVPrinter writer = new CSVPrinter(new FileWriter(file));
    for (final AdductType adduct : adducts) {

      writer.writeln(new String[]{adduct.getName(),
          String.valueOf(adduct.getMassDifference())});
    }
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.