Skip to content

Commit

Permalink
Disable ds-graph special processing
Browse files Browse the repository at this point in the history
  • Loading branch information
bherr2 committed Nov 1, 2024
1 parent 36b81b9 commit e598447
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/enrichment/enrich.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ export async function enrich(context) {
enrichCollectionData(context);
break;
case 'ds-graph':
await enrichDatasetGraphData(context);
enrichDatasetGraphMetadata(context);
break;
// await enrichDatasetGraphData(context);
// enrichDatasetGraphMetadata(context);
// break;
case 'millitome':
case 'vocab':
case 'graph':
Expand Down
6 changes: 3 additions & 3 deletions src/normalization/normalize.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ export async function normalize(context) {
normalizeCollectionData(context);
break;
case 'ds-graph':
await normalizeDatasetGraphData(context);
normalizeDatasetGraphMetadata(context);
break;
// await normalizeDatasetGraphData(context);
// normalizeDatasetGraphMetadata(context);
// break;
case 'millitome':
case 'vocab':
case 'graph':
Expand Down

0 comments on commit e598447

Please sign in to comment.