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 new term request github issue template #898

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
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
90 changes: 89 additions & 1 deletion template/_dynamic_files.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -1845,4 +1845,92 @@ jobs:
GITHUB_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
CONFIG_FILE: mkdocs.yaml
{% endif -%}
{% endif -%}
{% endif -%}
{% if (('github_actions' in project.ci) and ('github' in project.workflows)) %}
^^^ .github/ISSUE_TEMPLATE/add-term.yml
name: Add term- Request a New Ontology Term
description: Request a new term to be added to the {{ project.title }}.
title: Request for new term [ADD NAME HERE]
labels: [ New term request ]
body:
- type: markdown
attributes:
value: |
Use this form to request a new ontology term be added to {{ project.id | upper }}.
- type: input
id: Label
attributes:
label: Label
description: Preferred term label. Please add the label in lowercase, unless it is a proper name.
placeholder: ex. spindle cell rhabdomyosarcoma
validations:
required: true
- type: input
id: synonyms
attributes:
label: Synonyms
description: Alternative term(s) or acroynymm for the preferred label. Separate by a comma.
placeholder: ex. SCRMS, SC rhabdomyosarcoma
validations:
required: false
- type: dropdown
id: synonym_type
attributes:
label: Synonym type
description: Please indicate if the synonym is exact, broad, narrow or related. See [here for more explanation of synonym scope](https://mondo.readthedocs.io/en/latest/editors-guide/f-entities/#synonym-scope).
options:
- exact
- broad
- narrow
- related
validations:
required: false
- type: textarea
id: description
attributes:
label: Definition
description: |
Please provide a definition of the term and a reference, such as a PubMed ID, if applicable, in format PMID:#######.
validations:
required: true
- type: input
id: parent
attributes:
label: Parent term
description: Provide a parent term or superclass, i.e. the class this new term should be classified under. Provide the ID and label.
placeholder: BFO:0000001
validations:
required: true
- type: input
id: children
attributes:
label: Children term(s)
description: List any existing terms that should be classified underneath this new proposed term, if applicable. Provide the ID and label.
placeholder: ex. MONDO:0100067 childhood spindle cell rhabdomyosarcoma
validations:
required: false
- type: input
id: orcid
attributes:
label: ORCID Identifier
description: What is the ORCID identifier of the person requesting this term? ORCID identifiers can be made at https://orcid.org.
placeholder: e.g. https://orcid.org/0000-0001-5208-3432
validations:
required: false
- type: input
id: website
attributes:
label: Website URL
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

may be nothing but should the ' have an escaping \ before it?

description: Provide a website URL that you'd like to be associated with this new term.
placeholder: e.g. https://clinicalgenome.org/affiliation/40005/
validations:
required: false
- type: textarea
id: comments
attributes:
label: Additional comments
description: |
Please provide any additional comments here.
validations:
required: false
{% endif -%}
21 changes: 0 additions & 21 deletions template/issue_template.md.jinja2

This file was deleted.

Loading