Skip to content

Commit

Permalink
feat: Integrate help configs into workflow stages
Browse files Browse the repository at this point in the history
- Import static help configurations for precuration stage.
- Add `helpConfig` key to `precuration` stage in `workflowConfig`.
- Re-export individual step configurations for consistent access.
  • Loading branch information
berntpopp committed Mar 21, 2024
1 parent dee7456 commit 421894a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ import { geneDetailsConfig, geneDetailsConfigVersion } from './geneDetailsConfig
import { precurationDetailsConfig, precurationDetailsConfigVersion } from './precurationDetailsConfig';
import { curationDetailsConfig, curationDetailsConfigVersion } from './curationDetailsConfig';

// Importing static help configurations
import precurationHelpConfig from './static/precurationHelp.json';

// Defining the workflow configuration version and name
export const workflowConfigVersion = '0.2.0';
export const workflowConfigName = 'Kidney Genetics Gene Curation';
Expand All @@ -21,6 +24,7 @@ export const workflowConfig = {
precuration: {
configFile: 'precurationDetailsConfig.js',
version: '0.2.0',
helpConfig: precurationHelpConfig,
checksum: 'md5-checksum-of-precuration-config',
nextStage: 'curation',
prefillRules: [
Expand Down

0 comments on commit 421894a

Please sign in to comment.