Skip to content
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
4 changes: 4 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,9 @@ collections:
group: publications
layout: default
output: True
reviews:
group: reviews
layout: default
output: True


6 changes: 3 additions & 3 deletions _data/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
link: "/publications"
group: publications

# - name: reviews
# link: "/reviews"
# group: reviews
- name: reviews
link: "/reviews"
group: reviews

- name: members
link: "/members"
Expand Down
24 changes: 24 additions & 0 deletions _reviews/_template.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: "Title of Manuscript Reviewed"
date: "YYYY-MM-DD" # Date of Public Review, then update to Date of Publication
authors: "Author1 A, Author2 B, **Barad BA**" # Bold name of lab members by wrapping with ** **
reviewers: "Reviewer1, Reviewer2" # Lab members who reviewed the manuscript
image: "img/reviews/YYYY_author.webp" # Use CDN! Optional image
abstract: "optional one-sentence abstract"

peer-review:
- preprint_url: "" # Full URL to the preprint
review_url: "" # Full URL to the public review

published:
- pmid: "" # PubMed ID of final published version
journal_url: "" # Full URL to the journal version

# Optional additional links in post-review section
links:
- name: "" # Name of the link
url: "" # URL of the link

---

# Optional: Paste review summary or highlights here
80 changes: 80 additions & 0 deletions reviews/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
---
title: Peer Reviews from the Barad Lab
layout: parallax
group: reviews
banner: img/site/banners/square_tomo.webp
---
<h1>Peer Reviews</h1>
<div class="container-fluid">
<p>
Peer review of scientific manuscripts is essential for scientific communication and plays an important role in refining the body of work prior to final publication. We believe that transparency in peer review can improve the speed, quality, and collegiality of the publication process. Peer review is also an important training opportunity for lab members in scientific thinking and writing. As such, we only review manuscripts that have been posted on preprint servers and we post our peer review comments publicly.
</p>

{% assign sorted = site.reviews | sort: "date" | reverse %}
{% for review in sorted %}

<hr>
<div class="row" style="padding-top: 60px; margin-top: -60px;" id="{{review.date}}">
<div>
<h5>{{ review.title | markdownify | remove: '<p>' | remove: '</p>' | strip }}</h5>
<h6>{{ review.authors | markdownify | remove: '<p>' | remove: '</p>' | strip }}</h6>
{% if review.reviewers %}
Reviewed by: <strong>{{ review.reviewers | markdownify | remove: '<p>' | remove: '</p>' | strip }}</strong>
{% if review.date %} - {{ review.date | date: "%B %Y" }}{% endif %}
{% endif %}
<br>
{% if review.abstract %}
<p>{{ review.abstract | markdownify | remove: '<p>' | remove: '</p>' }}</p>
{% endif %}
</div>
</div>

<div class="row" style="padding-top: 30px; margin-top: -20px">
<div class="col">
{% if review.image %}
<img class="img-fluid" src="{{site.cdn}}{{review.image}}" alt="Representative figure for {{review.title | strip_html | strip}}" style="max-height: 250px;">
{% endif %}
</div>
<ul class="col">
<h5>Peer Review</h5>

{% for record in review.peer-review %}

<!--Preprint-->
{% if record.preprint_url %}
<li>Preprint: <a href="{{record.preprint_url}}" title="Preprint (opens in new tab)" target="_blank">Link</a></li>
{% endif %}

<!--Public Review-->
{% if record.review_url %}
<li>Public Review: <a href="{{record.review_url}}" title="Public Review (opens in new tab)" target="_blank">Link</a></li>
{% endif %}

{% endfor %}
</ul>
<ul class="col">
{% if review.published %}
<h5>Post-Review</h5>
<h6>Access the paper</h6>
{% for pub in review.published %}
{% if pub.pmid %}
<li>PMID: <a href="http://www.ncbi.nlm.nih.gov/pubmed/{{pub.pmid}}" title="PubMed: {{pub.pmid}} (opens in new tab)" target="_blank">{{pub.pmid}}</a></li>
{% endif %}
{% if pub.journal_url %}
<li><a href="{{pub.journal_url}}" title="Journal Version (opens in new tab)" target="_blank">Journal Version</a></li>
{% endif %}
{% endfor %}

{% if review.links %}
<br>
<h6>Additional Link{% if review.links.size > 1 %}s{% endif %}</h6>
{% for link in review.links %}
<li><a href="{{link.url}}" alt="{{link.name}} (opens in new tab)" target="_blank">{{link.name}}</a></li>
{% endfor %}
{% endif %}
{% endif %}
</ul>
</div>
<br>
{% endfor %}
</div>