Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix config description of assembly name ordering for synteny data adapters #4631

Merged
merged 1 commit into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const ChainAdapter = ConfigurationSchema(
type: 'stringArray',
defaultValue: [],
description:
'Target is the first value in the array, query is the second',
'Array of assembly names to use for this file. The query assembly name is the first value in the array, target assembly name is the second',
},
/**
* #slot
Expand Down
7 changes: 5 additions & 2 deletions plugins/comparative-adapters/src/DeltaAdapter/configSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const DeltaAdapter = ConfigurationSchema(
type: 'stringArray',
defaultValue: [],
description:
'Array of assembly names to use for this file. The target assembly name is the first value in the array, query assembly name is the second',
'Array of assembly names to use for this file. The query assembly name is the first value in the array, target assembly name is the second',
},
/**
* #slot
Expand All @@ -41,7 +41,10 @@ const DeltaAdapter = ConfigurationSchema(
*/
deltaLocation: {
type: 'fileLocation',
defaultValue: { uri: '/path/to/file.delta', locationType: 'UriLocation' },
defaultValue: {
uri: '/path/to/file.delta',
locationType: 'UriLocation',
},
},
},
{ explicitlyTyped: true },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const MashMapAdapter = ConfigurationSchema(
type: 'stringArray',
defaultValue: [],
description:
'Target is the first value in the array, query is the second',
'Array of assembly names to use for this file. The query assembly name is the first value in the array, target assembly name is the second',
},

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const PAFAdapter = ConfigurationSchema(
type: 'stringArray',
defaultValue: [],
description:
'Array of assembly names to use for this file. The target assembly name is the first value in the array, query assembly name is the second',
'Array of assembly names to use for this file. The query assembly name is the first value in the array, target assembly name is the second',
},
/**
* #slot
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const PairwiseIndexedPAFAdapter = ConfigurationSchema(
type: 'stringArray',
defaultValue: [],
description:
'Array of assembly names to use for this file. The target assembly name is the first value in the array, query assembly name is the second',
'Array of assembly names to use for this file. The query assembly name is the first value in the array, target assembly name is the second',
},
/**
* #slot
Expand Down
Loading