Skip to content

Commit 443e3cc

Browse files
matentznnlharriserik-whiting
authored
Create pre-submission.md (OBOFoundry#2285)
* Create pre-submission.md * Update .github/ISSUE_TEMPLATE/pre-submission.md Co-authored-by: Nomi Harris <nlharris@users.noreply.github.com> * Update .github/ISSUE_TEMPLATE/pre-submission.md Co-authored-by: Nomi Harris <nlharris@users.noreply.github.com> * Update .github/ISSUE_TEMPLATE/pre-submission.md Co-authored-by: Nomi Harris <nlharris@users.noreply.github.com> * Update .github/ISSUE_TEMPLATE/pre-submission.md * Update .github/ISSUE_TEMPLATE/pre-submission.md * Update .github/ISSUE_TEMPLATE/pre-submission.md * Use capitalized directive words --------- Co-authored-by: Nomi Harris <nlharris@users.noreply.github.com> Co-authored-by: Erik Whiting <erik@erikwhiting.com>
1 parent bcf162f commit 443e3cc

1 file changed

Lines changed: 145 additions & 0 deletions

File tree

Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
name: Pre-submission Inquiry
2+
description: Make a pre-submission inquiry for an ontology. The purpose of a pre-submission inquiry is to announce an early ontology project that is not yet ready for review. It also serves as a reservation of an ontology namespace for 6 months.
3+
title: Pre-submission Inquiry for Ontology [NAME]
4+
labels: [ pre-submission ]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Do _NOT_ use this form to register a new ontology with the OBO Foundry. Please read the instructions provided here: http://obofoundry.org/docs/NewOntologyRegistrationInstructions.html.
10+
- type: input
11+
id: title
12+
attributes:
13+
label: Title
14+
description: What is the full title of your ontology? Please do not include redundant acronyms.
15+
placeholder: ex. Chemical Entities of Biological Interest
16+
validations:
17+
required: true
18+
- type: input
19+
id: slug
20+
attributes:
21+
label: Short Description
22+
description: Please provide a short description of your ontology in one sentence.
23+
validations:
24+
required: true
25+
- type: input
26+
id: idspace
27+
attributes:
28+
label: Identifier Space
29+
description: What is the prefix for the identifier space associated with your ontology? This is typically all capital letters with at least 3, ideally 4 or more, characters. This MUST NOT conflict with any entries in the [Bioregistry](https://bioregistry.io/registry) nor [BioPortal](https://bioportal.bioontology.org). See OBO Principle [FP-003 "URI/Identifier Space"](https://obofoundry.org/principles/fp-003-uris.html).
30+
placeholder: ex. UBERON
31+
validations:
32+
required: true
33+
- type: dropdown
34+
id: domain
35+
validations:
36+
required: true
37+
attributes:
38+
label: Domain
39+
description: Please choose the domain that best describes your ontology
40+
options:
41+
- upper
42+
- anatomy and development
43+
- health
44+
- phenotype
45+
- investigations
46+
- environment
47+
- biochemistry
48+
- microbiology
49+
- agriculture
50+
- diet, metabolomics, and nutrition
51+
- biological systems
52+
- information technology
53+
- organisms
54+
- information
55+
- simulation
56+
- type: markdown
57+
attributes:
58+
value: |
59+
# Links
60+
61+
This section of the ontology request form contains links to various resources associated with your ontology.
62+
- type: input
63+
id: repository
64+
attributes:
65+
label: Source Code Repository
66+
description: What is the URL of the repository? Typically, this will be a link to a public GitHub or Gitlab repository.
67+
placeholder: e.g. https://github.com/obophenotype/uberon/
68+
validations:
69+
required: true
70+
- type: input
71+
id: tracker
72+
attributes:
73+
label: Issue Tracker
74+
description: What is the URL of the public issue tracker? Typically, this will be the link to the GitHub repository with a trailing `/issues` URL part.
75+
placeholder: e.g. https://github.com/obophenotype/uberon/issues
76+
validations:
77+
required: true
78+
- type: input
79+
id: download
80+
attributes:
81+
label: Ontology Download Link
82+
description: What URL can be used to download your ontology?
83+
placeholder: e.g. https://github.com/obophenotype/uberon/raw/master/uberon.owl
84+
validations:
85+
required: true
86+
87+
- type: markdown
88+
attributes:
89+
value: |
90+
# Contact
91+
92+
This section of the ontology request form contains information about the contact person for the ontology. See also OBO Principle [FP-011 "Locus of Authority"](https://obofoundry.org/principles/fp-011-locus-of-authority.html)
93+
- type: input
94+
id: contact-name
95+
attributes:
96+
label: Contact Name
97+
description: What is the full name of the contact for the ontology?
98+
placeholder: e.g. Charles Tapley Hoyt
99+
validations:
100+
required: true
101+
- type: input
102+
id: contact-email
103+
attributes:
104+
label: Contact Email
105+
description: What is the email address of the contact for the ontology?
106+
placeholder: e.g. cthoyt@gmail.com
107+
validations:
108+
required: true
109+
- type: input
110+
id: contact-github
111+
attributes:
112+
label: Contact GitHub Username
113+
description: What is the GitHub username of the contact for the ontology? Do not include the @ symbol.
114+
placeholder: e.g. cthoyt
115+
validations:
116+
required: true
117+
- type: input
118+
id: contact-orcid
119+
attributes:
120+
label: Contact ORCID Identifier
121+
description: What is the ORCID identifier of the contact for the ontology? ORCID identifiers can be made at https://orcid.org.
122+
placeholder: e.g. 0000-0003-4423-4370
123+
validations:
124+
required: true
125+
126+
- type: markdown
127+
attributes:
128+
value: |
129+
# Other information
130+
131+
- type: textarea
132+
id: scenarios
133+
attributes:
134+
label: Intended Use Cases and/or Related Projects
135+
description: For projects, please include a link to their websites or other location to find more information.
136+
validations:
137+
required: false
138+
- type: textarea
139+
id: remarks
140+
attributes:
141+
label: Additional comments or remarks
142+
description: Is there any other information that will be helpful for the OBO community and reviewers of your ontology?
143+
validations:
144+
required: false
145+

0 commit comments

Comments
 (0)