Package com.infoclinika.web.dto

Examples of com.infoclinika.web.dto.TranslationRequest


        TranslationResult translationResult = null;
        TranslationError translationError = null;
        try {
            AnalysisBounds bounds = experiment.getBounds();
            final List<Double> lockMasses = experiment.getLockMasses();
            final TranslationRequest request = new TranslationRequest(urls, names, conditions, avoidNullList(lockMasses), experimentWorkflowType, vendorType, targetBucket, targetKeyPrefix,
                    bounds.getMinRt(), bounds.getMaxRt(), bounds.getMinMz(), bounds.getMaxMz());
            translationResult = translationService.translateFiles(request);
            LOG.debug(" * Got result from translation service. Translated IDs = " + translationResult.getTranslatedIds() + ". Error message = " + translationResult.translationError);
            translationError = translationResult.translationError;
        } catch (Exception e) {
View Full Code Here

TOP

Related Classes of com.infoclinika.web.dto.TranslationRequest

Copyright © 2018 www.massapicom. 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.