Examples of importFiles()


Examples of eu.isas.peptideshaker.PeptideShaker.importFiles()

        // create a shaker which will perform the analysis
        PeptideShaker peptideShaker = new PeptideShaker(experiment, sample, replicateNumber);

        // import the files
        peptideShaker.importFiles(waitingHandler, idFilter, identificationFiles, spectrumFiles, searchParameters,
                annotationPreferences, projectDetails, processingPreferences, ptmScoringPreferences,
                spectrumCountingPreferences, sequenceMatchingPreferences, false);

        // show the warnings
        Iterator<String> iterator = peptideShaker.getWarnings().keySet().iterator();
View Full Code Here

Examples of org.apache.jetspeed.serializer.JetspeedSerializerApplication.importFiles()

       
        try
        {
            if (files != null && files.length > 0)
            {
                app.importFiles(logger, applicationRootPath, categories, filterPropertiesFileName, props, files);
            }
        }
        catch (SerializerException se)
        {
            throw new MojoExecutionException("Serializer error: ",se);
View Full Code Here

Examples of org.araneaframework.servlet.filter.importer.FileImporter.importFiles()

  protected void action(Path path, InputData input, OutputData output) throws Exception {
    String type = (String)input.getGlobalData().get(IMPORTER_TYPE_KEY);
    FileImporter importer = FileImportFactory.createFileImporter(type);
   
    if (importer != null) {
      List filesToLoad = importer.importFiles(input);
      importer.setHeaders(output);
   
      loadFiles(filesToLoad,
        ((ServletOutputData)output).getResponse().getOutputStream());
    }
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.