public class JIPipeProject extends Object implements JIPipeValidatable
Modifier and Type | Class and Description |
---|---|
static class |
JIPipeProject.CompartmentAddedEvent
Triggered when a sample is added to an
JIPipeProject |
static class |
JIPipeProject.CompartmentRemovedEvent
Triggered when a sample is removed from an
JIPipeProject |
static class |
JIPipeProject.Deserializer
Deserializes a project
|
static class |
JIPipeProject.Serializer
Serializes a project
|
Modifier and Type | Field and Description |
---|---|
static int |
CURRENT_PROJECT_FORMAT_VERSION
The current version of the project format.
|
Constructor and Description |
---|
JIPipeProject()
A JIPipe project
|
Modifier and Type | Method and Description |
---|---|
JIPipeProjectCompartment |
addCompartment(JIPipeProjectCompartment compartment,
UUID uuid)
Adds an existing compartment instance
|
JIPipeProjectCompartment |
addCompartment(String name)
Adds a new project compartment
|
void |
connectCompartments(JIPipeProjectCompartment source,
JIPipeProjectCompartment target)
Connects two compartments
|
JIPipeProjectCompartment |
findCompartment(String uuidOrAlias)
Finds a compartment by UUID or alias
|
void |
fixCompartmentOutputs()
Repairs restored compartment outputs
|
void |
fromJson(com.fasterxml.jackson.databind.JsonNode jsonNode,
JIPipeIssueReport report,
JIPipeNotificationInbox notifications)
Loads the project from JSON
|
Map<String,Object> |
getAdditionalMetadata() |
JIPipeProjectCache |
getCache() |
JIPipeGraph |
getCompartmentGraph() |
BiMap<UUID,JIPipeProjectCompartment> |
getCompartments() |
Set<JIPipeGraphNode> |
getDeactivatedAlgorithms()
Returns a list of all nodes that cannot be executed or are deactivated by the user.
|
EventBus |
getEventBus() |
JIPipeGraph |
getGraph() |
Set<JIPipeDataSlot> |
getHeavyIntermediateAlgorithmOutputSlots()
Returns a list of all nodes that generate heavy data (
JIPipeHeavyData ) and are intermediate (see getIntermediateAlgorithms()). |
JIPipeProjectHistoryJournal |
getHistoryJournal() |
Set<JIPipeGraphNode> |
getIntermediateAlgorithms()
Returns all nodes that have at least one connected algorithm that uses its generated data.
|
JIPipeProjectMetadata |
getMetadata() |
List<JIPipeNodeExample> |
getNodeExamples(String nodeTypeId)
Gets all examples for a node type ID.
|
JIPipeProjectInfoParameters |
getPipelineParameters()
Returns the global parameters for this pipeline
|
Set<JIPipeDependency> |
getSimplifiedMinimalDependencies() |
Path |
getWorkDirectory()
Gets the folder where the project is currently working in
|
static Set<JIPipeDependency> |
loadDependenciesFromJson(com.fasterxml.jackson.databind.JsonNode node)
Deserializes the set of project dependencies from JSON.
|
static JIPipeProjectMetadata |
loadMetadataFromJson(com.fasterxml.jackson.databind.JsonNode node)
Deserializes the project metadata from JSON
|
static JIPipeProject |
loadProject(Path fileName,
JIPipeIssueReport report)
Loads a project from a file
|
static JIPipeProject |
loadProject(Path fileName,
JIPipeIssueReport report,
JIPipeNotificationInbox notifications)
Loads a project from a file
|
void |
onCompartmentGraphChanged(JIPipeGraph.GraphChangedEvent event)
Triggered when the compartment graph is changed
|
void |
rebuildAliasIds(boolean force)
Re-assigns graph node Ids based on their name
|
void |
rebuildCompartmentsFromGraph()
Rebuilds the compartment list from the current state of the compartment graph
|
void |
removeCompartment(JIPipeProjectCompartment compartment)
Removes a compartment
|
void |
reportValidity(JIPipeIssueReport report)
Generates a validity report
|
void |
reportValidity(JIPipeIssueReport report,
JIPipeGraphNode targetNode)
Reports the validity for the target node and its dependencies
|
void |
saveProject(OutputStream outputStream)
Saves the project
|
void |
saveProject(Path fileName)
Saves the project
|
void |
saveProject(Writer writer)
Saves the project
|
void |
setAdditionalMetadata(Map<String,Object> additionalMetadata) |
void |
setWorkDirectory(Path workDirectory)
Sets the folder where the project is currently working in.
|
void |
toJson(com.fasterxml.jackson.core.JsonGenerator generator)
Writes the project to JSON
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
generateValidityReport
public static final int CURRENT_PROJECT_FORMAT_VERSION
public static JIPipeProject loadProject(Path fileName, JIPipeIssueReport report) throws IOException
fileName
- JSON filereport
- issue reportIOException
- Triggered by ObjectMapper
public static JIPipeProject loadProject(Path fileName, JIPipeIssueReport report, JIPipeNotificationInbox notifications) throws IOException
fileName
- JSON filereport
- issue reportnotifications
- notifications for the userIOException
- Triggered by ObjectMapper
public static Set<JIPipeDependency> loadDependenciesFromJson(com.fasterxml.jackson.databind.JsonNode node)
node
- JSON nodeJIPipeMutableDependency
public static JIPipeProjectMetadata loadMetadataFromJson(com.fasterxml.jackson.databind.JsonNode node)
node
- JSON nodepublic JIPipeProjectCompartment findCompartment(String uuidOrAlias)
uuidOrAlias
- UUID or aliaspublic EventBus getEventBus()
public JIPipeGraph getGraph()
public void saveProject(Path fileName) throws IOException
fileName
- Target fileIOException
- Triggered by ObjectMapper
public void saveProject(Writer writer) throws IOException
writer
- Target writerIOException
- Triggered by ObjectMapper
public void saveProject(OutputStream outputStream) throws IOException
outputStream
- Target writerIOException
- Triggered by ObjectMapper
public JIPipeProjectCache getCache()
public BiMap<UUID,JIPipeProjectCompartment> getCompartments()
public JIPipeProjectCompartment addCompartment(String name)
name
- Compartment namepublic JIPipeProjectCompartment addCompartment(JIPipeProjectCompartment compartment, UUID uuid)
compartment
- Compartmentuuid
- the UUID of the compartmentpublic void connectCompartments(JIPipeProjectCompartment source, JIPipeProjectCompartment target)
source
- Source compartmenttarget
- Target compartmentpublic void onCompartmentGraphChanged(JIPipeGraph.GraphChangedEvent event)
event
- Generated eventpublic void reportValidity(JIPipeIssueReport report)
JIPipeValidatable
reportValidity
in interface JIPipeValidatable
report
- the report to be added topublic void reportValidity(JIPipeIssueReport report, JIPipeGraphNode targetNode)
report
- the reporttargetNode
- the target nodepublic JIPipeGraph getCompartmentGraph()
JIPipeProjectCompartment
nodes.public void removeCompartment(JIPipeProjectCompartment compartment)
compartment
- The compartmentpublic JIPipeProjectMetadata getMetadata()
public Path getWorkDirectory()
public void setWorkDirectory(Path workDirectory)
workDirectory
- Project work directorypublic Set<JIPipeDependency> getSimplifiedMinimalDependencies()
public void rebuildAliasIds(boolean force)
force
- force updatingpublic void toJson(com.fasterxml.jackson.core.JsonGenerator generator) throws IOException
generator
- the JSON generatorIOException
- thrown by JsonGenerator
public void fromJson(com.fasterxml.jackson.databind.JsonNode jsonNode, JIPipeIssueReport report, JIPipeNotificationInbox notifications) throws IOException
jsonNode
- the nodenotifications
- notifications for the userIOException
public void rebuildCompartmentsFromGraph()
public Set<JIPipeGraphNode> getDeactivatedAlgorithms()
public Set<JIPipeGraphNode> getIntermediateAlgorithms()
public Set<JIPipeDataSlot> getHeavyIntermediateAlgorithmOutputSlots()
JIPipeHeavyData
) and are intermediate (see getIntermediateAlgorithms()).
Skips all nodes that do not save outputs.public JIPipeProjectInfoParameters getPipelineParameters()
public void fixCompartmentOutputs()
public JIPipeProjectHistoryJournal getHistoryJournal()
public List<JIPipeNodeExample> getNodeExamples(String nodeTypeId)
nodeTypeId
- the IDCopyright © 2020–2022 Leibniz Institute for Natural Product Research and Infection Biology - Hans Knöll Institute (HKI). All rights reserved.