Package net.sf.mzmine.project

Examples of net.sf.mzmine.project.MZmineProject.addFile()


        // Finalize writing
        correctedDataFile = rawDataFileWriter.finishWriting();

        // Add the newly created file to the project
        final MZmineProject project = MZmineCore.getCurrentProject();
        project.addFile(correctedDataFile);

        // Remove the original data file if requested
        if (removeOriginal) {
          project.removeFile(origDataFile);
        }
View Full Code Here


          break;
      }

      // Add the newly created file to the project
      final MZmineProject project = MZmineCore.getCurrentProject();
      project.addFile(correctedDataFile);

      // Remove the original data file if requested
      if (removeOriginal)
        project.removeFile(dataFile);
    } catch (IOException e) {
View Full Code Here

        // Finalize writing
        filteredDataFile = rawDataFileWriter.finishWriting();

        // Add the newly created file to the project
        final MZmineProject project = MZmineCore.getCurrentProject();
        project.addFile(filteredDataFile);

        // Remove the original data file if requested
        if (removeOriginal)
          project.removeFile(dataFile);
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.