Skip to content

Commit a80bd8e

Browse files
authored
Merge pull request #50 from KMarshallX/master
Add repro-challenge form (issue template)
2 parents 28860ad + 514fc67 commit a80bd8e

1 file changed

Lines changed: 176 additions & 0 deletions

File tree

Lines changed: 176 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,176 @@
1+
name: "OHBM 2026 Reproducibility Challenge – Expression of Interest"
2+
description: "Submit your participation as a Source Party or Reproducing Party"
3+
title: "EOI - OHBM 2026 Reproducibility Challenge"
4+
labels: ["OHBM Reproducibility Challenge 2026"]
5+
assignees:
6+
- KMarshallX
7+
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Thank you for your interest in the **OHBM–OSSIG Reproducibility Challenge 2026**.
13+
14+
Participants may join as either:
15+
- **Source Party**: You provide a submitted OHBM abstract or related publication (“source work”), along with procedures, code, and, when possible, data.
16+
- **Reproducing Party**: You attempt to reproduce the source work using only the available procedures, code, and data — **without additional consultation** with the source party.
17+
18+
More details about the challenge can be found on the [OHBM OSSIG Reproducibility Challenge page](https://ossig.netlify.app/challenge/).
19+
Please fill in the relevant sections below.
20+
21+
- type: input
22+
id: authors
23+
attributes:
24+
label: "Author(s) & Contact Information"
25+
description: "Names, institutional affiliations, and contact email(s)."
26+
placeholder: "J. Doe (University X) – j.doe@university.edu"
27+
validations:
28+
required: true
29+
30+
- type: dropdown
31+
id: participation_role
32+
attributes:
33+
label: "I am submitting as:"
34+
options:
35+
- "Reproducing Party (to reproduce projects)"
36+
- "Source Party (to provide projects to be reproduced)"
37+
validations:
38+
required: true
39+
40+
###########################################################################
41+
# Source Party Section (Conditional)
42+
###########################################################################
43+
44+
- type: markdown
45+
attributes:
46+
value: |
47+
---
48+
## Source Party Submission
49+
*Please complete this section **only if** you selected “Source Party”.*
50+
51+
- type: input
52+
id: sop-link
53+
attributes:
54+
label: "Link to SOP / Documentation"
55+
placeholder: "https://github.com/... or OSF link"
56+
validations:
57+
required: false
58+
59+
- type: input
60+
id: code-link
61+
attributes:
62+
label: "Link to Code Repository"
63+
placeholder: "GitHub / GitLab / OSF / Zenodo"
64+
validations:
65+
required: false
66+
67+
- type: textarea
68+
id: data-description
69+
attributes:
70+
label: "Data Description"
71+
description: |
72+
Describe the data used in the source work (e.g., structural MRI, functional MRI, behavioural, etc.).
73+
If possible, include links or metadata. Indicate what is and is not shareable.
74+
placeholder: |
75+
- Modality:
76+
- Acquisition parameters:
77+
- Sample size:
78+
- Preprocessing pipelines:
79+
- Data links (if public):
80+
- Notes on restrictions:
81+
validations:
82+
required: false
83+
84+
- type: dropdown
85+
id: data-sharing
86+
attributes:
87+
label: "Data Sharing Possibilities"
88+
description: "Please indicate what level of sharing is possible for your dataset."
89+
options:
90+
- "Fully public dataset (already available)"
91+
- "Can share raw data"
92+
- "Can share derivatives only (e.g., processed outputs)"
93+
- "Can share under data-use agreement"
94+
- "IRB/ethics restrictions – cannot share data"
95+
- "Not applicable"
96+
validations:
97+
required: false
98+
99+
- type: input
100+
id: data-link
101+
attributes:
102+
label: "Link to Data Repository (if shareable)"
103+
placeholder: "https://osf.io/... or other data repository link"
104+
validations:
105+
required: false
106+
107+
- type: textarea
108+
id: sharing-details
109+
attributes:
110+
label: "Additional Notes on Data Access (optional)"
111+
placeholder: |
112+
- IRB requirements:
113+
- Data-use agreements:
114+
- Anonymization needs, etc.:
115+
validations:
116+
required: false
117+
118+
- type: input
119+
id: paper-link
120+
attributes:
121+
label: "Link to Abstract, Preprint, or Publication"
122+
placeholder: "https://doi.org/... or OHBM abstract link"
123+
validations:
124+
required: false
125+
126+
###########################################################################
127+
# Reproducing Party Section (Optional)
128+
###########################################################################
129+
- type: markdown
130+
attributes:
131+
value: |
132+
---
133+
## Reproducing Party Submission
134+
*Complete this section if you selected “Reproducing Party”.*
135+
136+
- type: textarea
137+
id: reproduce-interest
138+
attributes:
139+
label: "What type of work are you interested in reproducing?"
140+
placeholder: "Modalities, pipelines, analysis types, specific domains, etc."
141+
validations:
142+
required: false
143+
144+
- type: textarea
145+
id: reproduce-skills
146+
attributes:
147+
label: "Relevant Skills or Tools You Can Bring"
148+
placeholder: "Python, MATLAB, fMRIprep, diffusion, statistics, etc."
149+
validations:
150+
required: false
151+
152+
- type: textarea
153+
id: target-works
154+
attributes:
155+
label: "Do you have specific abstracts or works you wish to reproduce? (optional)"
156+
placeholder: "List titles, links, or OSF/GitHub IDs if known."
157+
validations:
158+
required: false
159+
160+
###########################################################################
161+
# Final
162+
###########################################################################
163+
- type: markdown
164+
attributes:
165+
value: |
166+
---
167+
## Additional Notes
168+
Add anything else you would like the OSSIG team or other participants to know.
169+
170+
- type: textarea
171+
id: additional-notes
172+
attributes:
173+
label: "Additional Information (Optional)"
174+
placeholder: "Logistical notes, time availability, questions, etc."
175+
validations:
176+
required: false

0 commit comments

Comments
 (0)