Skip to content

Commit 715ca69

Browse files
committed
Updated computation workflow fields to more specific names
1 parent 75bb827 commit 715ca69

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

conf/solr/8.11.1/schema.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,8 @@
262262
<field name="collectionMode" type="text_en" multiValued="true" stored="true" indexed="true"/>
263263
<field name="collectorTraining" type="text_en" multiValued="false" stored="true" indexed="true"/>
264264
<field name="workflowType" type="text_en" multiValued="true" stored="true" indexed="true"/>
265-
<field name="codeRepository" type="text_en" multiValued="true" stored="true" indexed="true"/>
266-
<field name="documentation" type="text_en" multiValued="true" stored="true" indexed="true"/>
265+
<field name="workflowCodeRepository" type="text_en" multiValued="true" stored="true" indexed="true"/>
266+
<field name="workflowDocumentation" type="text_en" multiValued="true" stored="true" indexed="true"/>
267267
<field name="contributor" type="text_en" multiValued="true" stored="true" indexed="true"/>
268268
<field name="contributorName" type="text_en" multiValued="true" stored="true" indexed="true"/>
269269
<field name="contributorType" type="text_en" multiValued="true" stored="true" indexed="true"/>
@@ -502,8 +502,8 @@
502502
<copyField source="collectionMode" dest="_text_" maxChars="3000"/>
503503
<copyField source="collectorTraining" dest="_text_" maxChars="3000"/>
504504
<copyField source="workflowType" dest="_text_" maxChars="3000"/>
505-
<copyField source="codeRepository" dest="_text_" maxChars="3000"/>
506-
<copyField source="documentation" dest="_text_" maxChars="3000"/>
505+
<copyField source="workflowCodeRepository" dest="_text_" maxChars="3000"/>
506+
<copyField source="workflowDocumentation" dest="_text_" maxChars="3000"/>
507507
<copyField source="contributor" dest="_text_" maxChars="3000"/>
508508
<copyField source="contributorName" dest="_text_" maxChars="3000"/>
509509
<copyField source="contributorType" dest="_text_" maxChars="3000"/>

scripts/api/data/metadatablocks/computational_workflow.tsv

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
computationalworkflow Computational Workflow Metadata
33
#datasetField name title description watermark fieldType displayOrder displayFormat advancedSearchField allowControlledVocabulary allowmultiples facetable displayoncreate required parent metadatablock_id termURI
44
workflowType Computational Workflow Type The kind of Computational Workflow, which is designed to compose and execute a series of computational or data manipulation steps in a scientific application text 0 TRUE TRUE TRUE TRUE TRUE FALSE computationalworkflow
5-
codeRepository External Code Repository URL A link to the repository where the un-compiled, human readable code and related code is located (e.g. SVN, GitHub, CodePlex, institutional GitLab instance) https://... url 1 FALSE FALSE TRUE FALSE TRUE FALSE computationalworkflow
6-
documentation Documentation A link (URL) to the documentation or text describing the Computational Workflow and its use textbox 2 FALSE FALSE TRUE FALSE TRUE FALSE computationalworkflow
5+
workflowCodeRepository External Code Repository URL A link to the repository where the un-compiled, human readable code and related code is located (e.g. SVN, GitHub, CodePlex, institutional GitLab instance) https://... url 1 FALSE FALSE TRUE FALSE TRUE FALSE computationalworkflow
6+
workflowDocumentation Documentation A link (URL) to the documentation or text describing the Computational Workflow and its use textbox 2 FALSE FALSE TRUE FALSE TRUE FALSE computationalworkflow
77
#controlledVocabulary DatasetField Value identifier displayOrder
88
workflowType Common Workflow Language (CWL) workflowtype_cwl 1
99
workflowType Workflow Description Language (WDL) workflowtype_wdl 2

src/main/java/propertyFiles/computationalworkflow.properties

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ metadatablock.displayFacet=Computational Workflow
44
datasetfieldtype.workflowType.title=Workflow Type
55
datasetfieldtype.workflowType.description=The kind of Computational Workflow, which is designed to compose and execute a series of computational or data manipulation steps in a scientific application
66
datasetfieldtype.workflowType.watermark=
7-
datasetfieldtype.codeRepository.title=External Code Repository URL
8-
datasetfieldtype.codeRepository.description=A link to another public repository where the un-compiled, human-readable code and related code is also located (e.g., SVN, GitHub, GitLab, CodePlex)
9-
datasetfieldtype.codeRepository.watermark=https://...
10-
datasetfieldtype.documentation.title=Documentation
11-
datasetfieldtype.documentation.description=A link (URL) to the documentation or text describing the Computational Workflow and its use
12-
datasetfieldtype.documentation.watermark=
7+
datasetfieldtype.workflowCodeRepository.title=External Code Repository URL
8+
datasetfieldtype.workflowCodeRepository.description=A link to another public repository where the un-compiled, human-readable code and related code is also located (e.g., SVN, GitHub, GitLab, CodePlex)
9+
datasetfieldtype.workflowCodeRepository.watermark=https://...
10+
datasetfieldtype.workflowDocumentation.title=Documentation
11+
datasetfieldtype.workflowDocumentation.description=A link (URL) to the documentation or text describing the Computational Workflow and its use
12+
datasetfieldtype.workflowDocumentation.watermark=
1313
controlledvocabulary.workflowType.common_workflow_language_(cwl)=Common Workflow Language (CWL)
1414
controlledvocabulary.workflowType.workflow_description_language_(wdl)=Workflow Description Language (WDL)
1515
controlledvocabulary.workflowType.nextflow=Nextflow

0 commit comments

Comments
 (0)