├── .github └── ISSUE_TEMPLATE │ ├── editorial.md │ ├── letter.md │ ├── replication.md │ └── reproduction.md └── README.md /.github/ISSUE_TEMPLATE/editorial.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Editorial 3 | about: Editorials are reserved for editors 4 | 5 | --- 6 | 7 | **Title:** 8 | **PDF URL:** 9 | **Metadata URL:** 10 | **Suggested editor:** 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/letter.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Letter 3 | about: A typical letter is 1 or 2 pages long (but no hard limit) 4 | 5 | --- 6 | 7 | **Title:** 8 | **PDF URL:** 9 | **Metadata URL:** 10 | **Suggested editor:** 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/replication.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Replication 3 | about: Computational replication (success or failure, full or partial) 4 | 5 | --- 6 | 7 | **Original article:** 8 | 9 | **PDF URL:** 10 | **Metadata URL:** 11 | **Code URL:** 12 | 13 | **Scientific domain:** 14 | **Programming language:** 15 | **Suggested editor:** 16 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/reproduction.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Reproduction 3 | about: Computational reproduction (success or failure, full or partial) 4 | 5 | --- 6 | 7 | **Original article:** 8 | 9 | **PDF URL:** 10 | **Metadata URL:** 11 | **Code URL:** 12 | 13 | **Scientific domain:** 14 | **Programming language:** 15 | **Suggested editor:** 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | ### [ReScience C](https://rescience.github.io/) submission site 3 | 4 | If you want to submit a new replication or a letter (related to reproduciblity 5 | issues or computational science), make sure to have: 6 | 7 | * URL to your article in PDF format (see [template](https://github.com/rescience/template)) 8 | * URL to metadata in YAML format (see [template](https://github.com/rescience/template)) 9 | * URL to your code (mandatory for replication) 10 | * URL to your data (optional) 11 | * Editors & reviewers suggestions (optional) from the 12 | [board](https://rescience.github.io/board/) 13 | 14 | then [**submit**](https://github.com/rescience/submissions/issues/new/choose) and follow instructions. 15 | --------------------------------------------------------------------------------