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

Add analysis command string metadata #46

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 @@ -128,7 +128,7 @@
},
"analysis_code_version": {
"type": "object",
"name": "analysis version",
"name": "analysis code version",
"description": "Version of the analysis code used in the analysis.",
"required": ["value"],
"properties": {
Expand All @@ -152,6 +152,33 @@
"const": "optional"
}
}
},
"analysis_code_command": {
"type": "object",
"name": "analysis code command",
"description": "The command used to run the analysis code used in the analysis.",
"required": ["value"],
"properties": {
"value": {
"oneOf": [
{
"type": "string"
},
{
"type": "string",
"enum": [
"not applicable",
"not collected",
"not provided",
"restricted access"
]
}
]
},
"mandatory": {
"const": "recommended"
}
}
},
"reference_genome": {
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
},
"analysis_code_version": {
"type": "object",
"name": "analysis version",
"name": "analysis code version",
"description": "Version of the analysis code used in the analysis.",
"required": ["value"],
"properties": {
Expand All @@ -183,6 +183,33 @@
}
}
},
"analysis_code_command": {
"type": "object",
"name": "analysis code command",
"description": "The command used to run the analysis code used in the analysis.",
"required": ["value"],
"properties": {
"value": {
"oneOf": [
{
"type": "string"
},
{
"type": "string",
"enum": [
"not applicable",
"not collected",
"not provided",
"restricted access"
]
}
]
},
"mandatory": {
"const": "recommended"
}
}
},
"reference_genome": {
"type": "object",
"name": "reference genome",
Expand Down