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

Adding PLOS info, changing schema #11

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 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
24 changes: 12 additions & 12 deletions policies/policies/romeo_112.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,40 +24,40 @@ parent-policies: []
child-policies: []

# Leave any notes about upstream RoMEO issues here. For example, if this policy does not apply to the journals listed above, leave a note here.
flag-romeo:
flag-romeo: there are different peer review urls for each journal - using PLOS ONE below

# Peer review policy url (valid url)
peer-review-url:
peer-review-url: http://journals.plos.org/plosone/s/editorial-and-peer-review-process
Copy link
Member

Choose a reason for hiding this comment

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

I think the build is failing because the YAML is incorrect. Strings containing : need to be quoted I think. Try quotes around URLs like:

peer-review-url: "http://journals.plos.org/plosone/s/editorial-and-peer-review-process"

Perhaps a YAML linter could help us detect these formatting problems.

Copy link
Member

Choose a reason for hiding this comment

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

According to adrienverge/yamllint#30 (comment) the colon in the URL may actually be okay, but let's see if the issues are resolved when we quote URLs.


# Does the journal publish the content of peer reviews? (mandatory/optional/no)
open-reports:
open-reports: no

# Are reviewer identities revealed to the author? (mandatory/optional/no)
identities-revealed:
identities-revealed: no

# Are reviewer identities published? (mandatory/optional/no)
identities-published:
identities-published: no

# Co-reviewer policy url (valid url)
co-review-url:
co-review-url: http://journals.plos.org/plosone/s/reviewer-guidelines#loc-confidentiality

# Journal’s policy about co-reviewers - ie people who collaborate with an invited reviewer (free text)
co-review-policy:
co-review-policy: Reviewers are required to treat all submitted manuscripts in strict confidence and should not share information about submissions with any other parties unless previously agreed with the editor. The involvement of a third party in the review must be declared at the time of the submission of the review.

# Does the journal make it clear in the reviewer invitation email that co-reviewers can contribute? (yes/no)
co-review-invited:

# Is there a dedicated place in the submission form to identify co-reviewers? (yes/no)
co-review-field:
co-review-field: yes

# Policy on transfer of peer reviews (free text)
transfer-policy:
transfer-policy: Authors can request that submissions (with referee reports, if relevant) rejected from one PLOS journal be transferred to another PLOS journal for further consideration there. Manuscripts will never be transferred between the journals without an author’s consent.We trust that reviewers for any PLOS journal are willing to have their reviews considered by the editors of another PLOS journal.

# What are the titles of the sections of the review form? (free text)
review-structure:
review-structure: Is the manuscript technically sound? (drop down) Has the statistical analysis been performed appropriately and rigorously? (drop down) Does the manuscript adhere to the PLOS Data Policy? (drop down) Is the manuscript presented in an intelligible fashion and written in standard English? Review comments to the author. If you would like your identity to be revealed to the author, please include your name here (optional). COI disclosure to the editor. Did you recieve any assistance in preparing the review (eg from a post-doc or graduate student? If yes, please provide his/her name and title here. Reference: http://journals.plos.org/plosone/s/file?id=t6Vo/plosone-reviewer-form.pdf
Copy link
Member

Choose a reason for hiding this comment

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

Ah this is probably the issue: Reference:


# Are there separate fields for technical & impact evaluation? (yes/no)
separate-structure:
separate-structure: yes

# Peer review credit policy url (valid url)
credit-url:
Expand Down Expand Up @@ -88,7 +88,7 @@ conditions:
- All titles are open access journals

# Preprint policy url (valid url)
preprint-url:
preprint-url: http://journals.plos.org/plosone/s/criteria-for-publication

# Version of the preprint that can be posted to a server (before review only/any/other/none)
preprint-version:
Expand Down
12 changes: 4 additions & 8 deletions policies/schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,10 @@ mapping:
type: str
desc: "Journal’s policy about co-reviewers - ie people who collaborate with an invited reviewer (free text)"
co-review-invited:
type: str
enum: [yes, no]
type: bool
desc: "Does the journal make it clear in the reviewer invitation email that co-reviewers can contribute? (yes/no)"
co-review-field:
type: str
enum: [yes, no]
type: bool
desc: "Is there a dedicated place in the submission form to identify co-reviewers? (yes/no)"

# PEER REVIEW TRANSFER
Expand All @@ -71,8 +69,7 @@ mapping:
type: str
desc: "What are the titles of the sections of the review form? (free text)"
separate-structure:
type: str
enum: [yes, no]
type: bool
desc: Are there separate fields for technical & impact evaluation? (yes/no)

# PEER REVIEW CREDIT
Expand Down Expand Up @@ -118,8 +115,7 @@ mapping:
enum: [before acceptance only, anytime, other]
desc: Time when a preprint can be posted (before acceptance only, anytime, other)
preprint-citation:
type: str
enum: [yes, no]
type: bool
desc: "Can preprints be cited in the reference list? (yes/no)"
acceptable-servers:
type: str
Expand Down