Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
d-callan committed Jan 29, 2024
1 parent c396a25 commit fddea44
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 12 deletions.
8 changes: 4 additions & 4 deletions docs/api.html

Large diffs are not rendered by default.

53 changes: 49 additions & 4 deletions schema/library.raml
Original file line number Diff line number Diff line change
Expand Up @@ -646,10 +646,18 @@ types:
type: object
properties:
pcoaVariance: number[]
FeaturePrefilterThresholds:
type: object
additionalProperties: false
properties:
proportionNonZero?: number
variance?: number
standardDeviation?: number
CorrelationComputeConfig:
type: object
properties:
correlationMethod: CorrelationMethod
prefilterThresholds?: FeaturePrefilterThresholds
CorrelationMethod:
type: string
enum:
Expand Down Expand Up @@ -778,6 +786,15 @@ types:
additionalProperties: false
properties:
isCutoff: boolean
InternalJob:
type: object
properties:
jobId: JobID
status: JobStatus
owned: boolean
created: datetime
grabbed: datetime
finished: datetime
PluginOverview:
displayName: Plugin Overview
type: object
Expand Down Expand Up @@ -939,16 +956,44 @@ types:
variables:
type: VariableMapping[]
required: false
KPartiteNetworkConfig:
type: NetworkConfig
properties:
partitionsMetadata: string[]
NodeIdList:
type: object
additionalProperties: false
properties:
nodeIds: string[]
KPartiteNetworkData:
type: NetworkData
properties:
partitions: NodeIdList[]
KPartiteNetwork:
type: object
additionalProperties: false
properties:
data: KPartiteNetworkData
config: KPartiteNetworkConfig
KPartiteNetworkPostResponse:
type: object
additionalProperties: false
properties:
kpartitenetwork: KPartiteNetwork
BipartiteNetworkConfig:
type: NetworkConfig
properties:
column1Metadata: string
column2Metadata: string
partitionsMetadata:
type: string[]
minItems: 2
maxItems: 2
BipartiteNetworkData:
type: NetworkData
properties:
column1NodeIDs: string[]
column2NodeIDs: string[]
partitions:
type: NodeIdList[]
maxItems: 2
minItems: 2
BipartiteNetwork:
type: object
additionalProperties: false
Expand Down
8 changes: 4 additions & 4 deletions src/main/resources/api.html

Large diffs are not rendered by default.

0 comments on commit fddea44

Please sign in to comment.