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

[REVIEW]: Django Remote Submission #366

Closed
18 tasks done
whedon opened this issue Aug 14, 2017 · 23 comments
Closed
18 tasks done

[REVIEW]: Django Remote Submission #366

whedon opened this issue Aug 14, 2017 · 23 comments
Labels
accepted published Papers published in JOSS recommend-accept Papers recommended for acceptance in JOSS. review

Comments

@whedon
Copy link

whedon commented Aug 14, 2017

Submitting author: @ricleal (Ricardo Miguel Ferraz Leal)
Repository: https://github.com/ornl-ndav/django-remote-submission
Version: v0.11.1
Editor: @arfon
Reviewer: @djmitche
Archive: 10.5281/zenodo.848749

Status

status

Status badge code:

HTML: <a href="http://joss.theoj.org/papers/98bd10d0cf254c881f5716318e8ceb6d"><img src="http://joss.theoj.org/papers/98bd10d0cf254c881f5716318e8ceb6d/status.svg"></a>
Markdown: [![status](http://joss.theoj.org/papers/98bd10d0cf254c881f5716318e8ceb6d/status.svg)](http://joss.theoj.org/papers/98bd10d0cf254c881f5716318e8ceb6d)

Reviewers and authors:

Please avoid lengthy details of difficulties in the review thread. Instead, please create a new issue in the target repository and link to those issues (especially acceptance-blockers) in the review thread below. (For completists: if the target issue tracker is also on GitHub, linking the review thread in the issue or vice versa will create corresponding breadcrumb trails in the link target.)

Reviewer questions

@djmitche, please carry out your review in this issue by updating the checklist below (please make sure you're logged in to GitHub). The reviewer guidelines are available here: http://joss.theoj.org/about#reviewer_guidelines. Any questions/concerns please let @arfon know.

Conflict of interest

  • As the reviewer I confirm that there are no conflicts of interest for me to review this work (such as being a major contributor to the software).

Code of Conduct

General checks

  • Repository: Is the source code for this software available at the repository url?
  • License: Does the repository contain a plain-text LICENSE file with the contents of an OSI approved software license?
  • Version: Does the release version given match the GitHub release (v0.11.1)?
  • Authorship: Has the submitting author (@ricleal) made major contributions to the software?

Functionality

  • Installation: Does installation proceed as outlined in the documentation?
  • Functionality: Have the functional claims of the software been confirmed?
  • Performance: Have any performance claims of the software been confirmed?

Documentation

  • A statement of need: Do the authors clearly state what problems the software is designed to solve and who the target audience is?
  • Installation instructions: Is there a clearly-stated list of dependencies? Ideally these should be handled with an automated package management solution.
  • Example usage: Do the authors include examples of how to use the software (ideally to solve real-world analysis problems).
  • Functionality documentation: Is the core functionality of the software documented to a satisfactory level (e.g., API method documentation)?
  • Automated tests: Are there automated tests or manual steps described so that the function of the software can be verified?
  • Community guidelines: Are there clear guidelines for third parties wishing to 1) Contribute to the software 2) Report issues or problems with the software 3) Seek support

Software paper

  • Authors: Does the paper.md file include a list of authors with their affiliations?
  • A statement of need: Do the authors clearly state what problems the software is designed to solve and who the target audience is?
  • References: Do all archival references that should have a DOI list one (e.g., papers, datasets, software)?
@whedon
Copy link
Author

whedon commented Aug 14, 2017

Hello human, I'm @whedon. I'm here to help you with some common editorial tasks for JOSS. @djmitche it looks like you're currently assigned as the reviewer for this paper 🎉.

⭐ Important ⭐

If you haven't already, you should seriously consider unsubscribing from GitHub notifications for this (https://github.com/openjournals/joss-reviews) repository. As as reviewer, you're probably currently watching this repository which means for GitHub's default behaviour you will receive notifications (emails) for all JOSS reviews 😿

To fix this do the following two things:

  1. Set yourself as 'Not watching' https://github.com/openjournals/joss-reviews:

watching

  1. You may also like to change your default settings for this watching repositories in your GitHub profile here: https://github.com/settings/notifications

notifications

For a list of things I can do to help you, just type:

@whedon commands

@arfon
Copy link
Member

arfon commented Aug 14, 2017

@djmitche - please carry out your review in this issue by updating the checklist above and giving feedback in this issue. The reviewer guidelines are available here: http://joss.theoj.org/about#reviewer_guidelines

Any questions/concerns please let me know.

@djmitche
Copy link

(I will continue later)

@ricleal
Copy link

ricleal commented Aug 15, 2017

Thanks @arfon and @djmitche for putting effort into reviewing this.
I was away the last few days but will have a look at the updated guidelines and expand a little on how this peace of software enables and addresses research challenges.
Thanks again

@djmitche
Copy link

While you're thinking about that, I'm also curious what value this adds over Celery itself. The code may demonstrate that to me when I dig in, so I apologize if the question seems ignorant.

@ricleal
Copy link

ricleal commented Aug 15, 2017

Not ignorant at all. Celery is just an asynchronous job queue. We have build around that. Django uses the Database to provide data to views and hence to the browser. Our Jobs besides running our scientific routines must be constantly writing to the DB (e.g. changing the status of the job - submitted, failed, etc - as well as writing the routine stdout/err, etc) so the browser can track the job and show as much information as possible.
A Job includes thus the ssh/sftp to the cluster, the database updates and the launching of the scientific routine itself. This Job is what we submit to Celery.
Hope that was clear.

@ricleal
Copy link

ricleal commented Aug 15, 2017

paper.md and paper.bib have been updated.

@djmitche
Copy link

Awesome, thanks for the updates!

@djmitche
Copy link

That's almost all the checkmarks (just Version left)!

This is a really nice piece of software, and extremely nicely packaged for re-use. A few minor details which would make this a little stronger, but do not detract from an "accept" grade:

  • The documentation mixes developer-oriented stuff (how to run tests, how to release) with user-oriented stuff (model, tasks, etc.), and in fact the user-oriented stuff appears last. A little reorganization there could help a new user to quickly find the information they need and not skim the release process wondering "how does this help me??"
  • The tests don't pass for me. I expect it's something with my SSH config, and I filed an issue about it. I can see that the test pass in Travis so I trust that they are good tests!

@openjournals openjournals deleted a comment from whedon Aug 16, 2017
@djmitche
Copy link

Oh, and I apologize for the slew of pull requests (5 PRs, 2 issues) -- I take the view that if it's easier for me to just fix something, then that's the appropriate way to provide feedback :)

@ricleal
Copy link

ricleal commented Aug 16, 2017

Thanks for the feedback. I will address all the issues tomorrow.

@djmitche
Copy link

OK, that's everything. I don't know what happens next (it's my first JOSS review)..

@ricleal
Copy link

ricleal commented Aug 16, 2017

Great. I've been trying to reproduce your test failures but without success... I will try in a empty docker container later. Also I will try to get the extras_require in setup.py as you suggested. This was an issue that should have been addressed long time ago...

@djmitche
Copy link

To be clear regarding the review, those were just suggestions for further improvement -- this is a strong "accept" for JOSS right now.

@ricleal
Copy link

ricleal commented Aug 16, 2017

Sure. I just want to make it as user friendly as possible so other people can use it.
I forgot to mention. I also updated/restructured the documentation as suggested.

@djmitche
Copy link

djmitche commented Aug 16, 2017 via email

@ricleal
Copy link

ricleal commented Aug 23, 2017

Just a quick heads up:

  • I have added Acknowledgments section to the paper (a required statement that I forgot...)
  • Since this contribution was accepted shouldn't the ticket be closed?

@djmitche
Copy link

@arfon ^^

@arfon
Copy link
Member

arfon commented Aug 24, 2017

  • Since this contribution was accepted shouldn't the ticket be closed?

We'll close it out once I've processed the final paper.

@ricleal - could you please merge this PR ornl-ndav/django-remote-submission#40 and then make an archive of the reviewed software in Zenodo/figshare/other service and update this thread with the DOI of the archive? I can then move forward with accepting the submission.

@ricleal
Copy link

ricleal commented Aug 25, 2017

Done. Here it goes:

DOI

I will update the Zenodo metadata once it gets published.

@arfon
Copy link
Member

arfon commented Aug 27, 2017

@whedon set 10.5281/zenodo.848749 as archive

@whedon
Copy link
Author

whedon commented Aug 27, 2017

OK. 10.5281/zenodo.848749 is the archive.

@arfon
Copy link
Member

arfon commented Aug 27, 2017

@djmitche many thanks for your review ✨

@ricleal - your paper is now accepted into JOSS and your DOI is http://dx.doi.org/10.21105/joss.00366 ⚡️ 🚀 💥

@arfon arfon closed this as completed Aug 27, 2017
@whedon whedon added accepted published Papers published in JOSS recommend-accept Papers recommended for acceptance in JOSS. labels Mar 2, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
accepted published Papers published in JOSS recommend-accept Papers recommended for acceptance in JOSS. review
Projects
None yet
Development

No branches or pull requests

4 participants