Package ubic.gemma.apps
Class ArrayDesignSequenceManipulatingCli
java.lang.Object
ubic.gemma.cli.util.AbstractCLI
ubic.gemma.cli.util.AbstractAuthenticatedCLI
ubic.gemma.cli.util.AbstractAutoSeekingCLI<ubic.gemma.model.expression.arrayDesign.ArrayDesign>
ubic.gemma.apps.ArrayDesignSequenceManipulatingCli
- All Implemented Interfaces:
org.springframework.beans.factory.Aware,org.springframework.beans.factory.InitializingBean,org.springframework.context.ApplicationContextAware,org.springframework.context.EnvironmentAware,CLI
- Direct Known Subclasses:
ArrayDesignAnnotationFileCli,ArrayDesignAuditTrailCleanupCli,ArrayDesignBioSequenceDetachCli,ArrayDesignBlatCli,ArrayDesignMapSummaryCli,ArrayDesignMergeCli,ArrayDesignProbeCleanupCLI,ArrayDesignProbeMapperCli,ArrayDesignProbeRenamerCli,ArrayDesignRepeatScanCli,ArrayDesignSequenceAssociationCli,ArrayDesignSubsumptionTesterCli,BioSequenceCleanupCli
public abstract class ArrayDesignSequenceManipulatingCli
extends AbstractAutoSeekingCLI<ubic.gemma.model.expression.arrayDesign.ArrayDesign>
Aggregates functionality useful when writing CLIs that need to get an array design from the database and do something
with it.
- Author:
- pavlidis
-
Nested Class Summary
Nested classes/interfaces inherited from interface ubic.gemma.cli.util.CLI
CLI.CommandGroup -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected ubic.gemma.core.analysis.report.ArrayDesignReportServiceprotected ubic.gemma.persistence.service.expression.arrayDesign.ArrayDesignServiceprotected ubic.gemma.persistence.service.common.auditAndSecurity.AuditEventServiceprotected ubic.gemma.persistence.service.common.auditAndSecurity.AuditTrailServiceprotected EntityLocatorFields inherited from class ubic.gemma.cli.util.AbstractAutoSeekingCLI
FORCE_OPTIONFields inherited from class ubic.gemma.cli.util.AbstractCLI
ABORTED, FAILURE, FAILURE_FROM_ERROR_OBJECTS, log, SUCCESS -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidbuildArrayDesignOptions(org.apache.commons.cli.Options options) protected final voidbuildOptions(org.apache.commons.cli.Options options) Build option implementation.protected final voidObtain the command group for this CLI.protected Collection<ubic.gemma.model.expression.arrayDesign.ArrayDesign> getRelatedDesigns(ubic.gemma.model.expression.arrayDesign.ArrayDesign design) Mergees or subsumees of the platform.protected booleanisSubsumedOrMerged(ubic.gemma.model.expression.arrayDesign.ArrayDesign arrayDesign) protected booleanneedToRun(Date skipIfLastRunLaterThan, ubic.gemma.model.expression.arrayDesign.ArrayDesign arrayDesign, Class<? extends ubic.gemma.model.common.auditAndSecurity.eventType.ArrayDesignAnalysisEvent> eventClass) protected voidprocessArrayDesign(ubic.gemma.model.expression.arrayDesign.ArrayDesign arrayDesign) protected voidprocessArrayDesignOptions(org.apache.commons.cli.CommandLine commandLine) protected voidprocessArrayDesigns(Collection<ubic.gemma.model.expression.arrayDesign.ArrayDesign> arrayDesigns) protected final voidprocessOptions(org.apache.commons.cli.CommandLine commandLine) Process command line options.protected booleanshouldRun(Date skipIfLastRunLaterThan, ubic.gemma.model.expression.arrayDesign.ArrayDesign design, Class<? extends ubic.gemma.model.common.auditAndSecurity.eventType.ArrayDesignAnalysisEvent> cls) protected SerializabletoBatchObject(ubic.gemma.model.expression.arrayDesign.ArrayDesign object) Convert the given object to a serializable object for batch processing.Methods inherited from class ubic.gemma.cli.util.AbstractAutoSeekingCLI
addAutoOption, addAutoOption, addErrorObject, addErrorObject, addErrorObject, addForceOption, addForceOption, addLimitingDateOption, addSuccessObject, addSuccessObject, addWarningObject, addWarningObject, getAutoSeekEventType, getLimitingDate, isAutoSeek, isForce, noNeedToRun, setForceMethods inherited from class ubic.gemma.cli.util.AbstractAuthenticatedCLI
afterPropertiesSet, doWork, setAuthenticateAnonymously, setEnvironment, setRequireLoginMethods inherited from class ubic.gemma.cli.util.AbstractCLI
abort, addBatchOption, addErrorObject, addErrorObject, addErrorObject, addSuccessObject, addSuccessObject, addThreadsOption, addWarningObject, addWarningObject, allowPositionalArguments, awaitBatchExecutorService, executeCommand, getApplicationContext, getBatchTaskExecutor, getBatchTaskProgressReporter, getCliContext, getCommandAliases, getCommandName, getHelpFooter, getNumThreads, getOptions, getShortDesc, getUsage, promptConfirmationOrAbort, setAllowPositionalArguments, setApplicationContext, setEstimatedMaxTasks, setReportFrequencyMillis
-
Field Details
-
arrayDesignReportService
@Autowired protected ubic.gemma.core.analysis.report.ArrayDesignReportService arrayDesignReportService -
arrayDesignService
@Autowired protected ubic.gemma.persistence.service.expression.arrayDesign.ArrayDesignService arrayDesignService -
auditTrailService
@Autowired protected ubic.gemma.persistence.service.common.auditAndSecurity.AuditTrailService auditTrailService -
auditEventService
@Autowired protected ubic.gemma.persistence.service.common.auditAndSecurity.AuditEventService auditEventService -
entityLocator
-
-
Constructor Details
-
ArrayDesignSequenceManipulatingCli
protected ArrayDesignSequenceManipulatingCli()
-
-
Method Details
-
getCommandGroup
Description copied from interface:CLIObtain the command group for this CLI.- Specified by:
getCommandGroupin interfaceCLI- Overrides:
getCommandGroupin classAbstractCLI
-
buildOptions
protected final void buildOptions(org.apache.commons.cli.Options options) Description copied from class:AbstractCLIBuild option implementation.Implement this method to add options to your command line, using the OptionBuilder.
This is called right after
AbstractCLI.buildStandardOptions(Options)so the options will be added after standard options.- Overrides:
buildOptionsin classAbstractCLI
-
buildArrayDesignOptions
protected void buildArrayDesignOptions(org.apache.commons.cli.Options options) -
processOptions
@OverridingMethodsMustInvokeSuper protected final void processOptions(org.apache.commons.cli.CommandLine commandLine) throws org.apache.commons.cli.ParseException Description copied from class:AbstractCLIProcess command line options.Implement this to provide processing of options. It is called after
AbstractCLI.buildOptions(Options)and right beforeAbstractCLI.doWork().- Overrides:
processOptionsin classAbstractAutoSeekingCLI<ubic.gemma.model.expression.arrayDesign.ArrayDesign>- Throws:
org.apache.commons.cli.ParseException- in case of unrecoverable failure (i.e. missing option or invalid value), an exception can be raised and will result in an exit code ofAbstractCLI.FAILURE.
-
processArrayDesignOptions
protected void processArrayDesignOptions(org.apache.commons.cli.CommandLine commandLine) throws org.apache.commons.cli.ParseException - Throws:
org.apache.commons.cli.ParseException
-
doAuthenticatedWork
- Specified by:
doAuthenticatedWorkin classAbstractAuthenticatedCLI- Throws:
Exception
-
processArrayDesigns
protected void processArrayDesigns(Collection<ubic.gemma.model.expression.arrayDesign.ArrayDesign> arrayDesigns) -
processArrayDesign
protected void processArrayDesign(ubic.gemma.model.expression.arrayDesign.ArrayDesign arrayDesign) -
toBatchObject
protected Serializable toBatchObject(@Nullable ubic.gemma.model.expression.arrayDesign.ArrayDesign object) Description copied from class:AbstractAutoSeekingCLIConvert the given object to a serializable object for batch processing.- Specified by:
toBatchObjectin classAbstractAutoSeekingCLI<ubic.gemma.model.expression.arrayDesign.ArrayDesign>
-
isSubsumedOrMerged
protected boolean isSubsumedOrMerged(ubic.gemma.model.expression.arrayDesign.ArrayDesign arrayDesign) - Parameters:
arrayDesign- the array design to check- Returns:
- true if the sequences on the given array design would be equivalently treated by analyzing another array design. In the case of subsumption, this only works if the array design has been either analyzed for subsuming status. (the analysis is not done as part of this call).
-
shouldRun
-
getRelatedDesigns
protected Collection<ubic.gemma.model.expression.arrayDesign.ArrayDesign> getRelatedDesigns(ubic.gemma.model.expression.arrayDesign.ArrayDesign design) Mergees or subsumees of the platform.- Parameters:
design- a platform- Returns:
- related platforms
-
needToRun
protected boolean needToRun(@Nullable Date skipIfLastRunLaterThan, ubic.gemma.model.expression.arrayDesign.ArrayDesign arrayDesign, Class<? extends ubic.gemma.model.common.auditAndSecurity.eventType.ArrayDesignAnalysisEvent> eventClass) - Parameters:
eventClass- e.g., ArrayDesignSequenceAnalysisEvent.class- Returns:
- true if skipIfLastRunLaterThan is null, or there is no record of a previous analysis, or if the last analysis was run before skipIfLastRunLaterThan. false otherwise.
-