Submitting author: @KathrynJones1 (Kathryn Jones)
Repository: https://github.com/KathrynJones1/catwoman
Version: v1.0.12
Editor: @xuanxu
Reviewer: @jessie-dotson, @barentsen
Archive: 10.5281/zenodo.3999513
:warning: JOSS reduced service mode :warning:
Due to the challenges of the COVID-19 pandemic, JOSS is currently operating in a "reduced service mode". You can read more about what that means in our blog post.
Status badge code:
HTML: <a href="https://joss.theoj.org/papers/37ce14f6fb5eae5484c5152f6f43ca99"><img src="https://joss.theoj.org/papers/37ce14f6fb5eae5484c5152f6f43ca99/status.svg"></a>
Markdown: [](https://joss.theoj.org/papers/37ce14f6fb5eae5484c5152f6f43ca99)
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) by leaving comments 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.)
@jessie-dotson & @barentsen, please carry out your review in this issue by updating the checklist below. If you cannot edit the checklist please:
The reviewer guidelines are available here: https://joss.readthedocs.io/en/latest/reviewer_guidelines.html. Any questions/concerns please let @xuanxu know.
โจ Please try and complete your review in the next six weeks โจ
Hello human, I'm @whedon, a robot that can help you with some common editorial tasks. @jessie-dotson, @barentsen it looks like you're currently assigned to review this paper :tada:.
:warning: JOSS reduced service mode :warning:
Due to the challenges of the COVID-19 pandemic, JOSS is currently operating in a "reduced service mode". You can read more about what that means in our blog post.
:star: Important :star:
If you haven't already, you should seriously consider unsubscribing from GitHub notifications for this (https://github.com/openjournals/joss-reviews) repository. As a reviewer, you're probably currently watching this repository which means for GitHub's default behaviour you will receive notifications (emails) for all reviews ๐ฟ
To fix this do the following two things:
For a list of things I can do to help you, just type:
@whedon commands
For example, to regenerate the paper pdf after making changes in the paper's md or bib files, type:
@whedon generate pdf
Reference check summary:
OK DOIs
- 10.1086/683602 is OK
- 10.1086/345520 is OK
- 10.3847/1538-3881/aae8e5 is OK
- 10.3847/1538-4357/ab55d9 is OK
MISSING DOIs
- None
INVALID DOIs
- None
@KathrynJones1, @jessie-dotson, @barentsen : this is the review thread for the paper. All of our communications will happen here from now on.
Both reviewers have checklists at the top of this thread with the JOSS requirements. As you go over the submission, please check any items that you feel have been satisfied. There are also links to the JOSS reviewer guidelines.
The JOSS review is different from most other journals. Our goal is to work with the authors to help them meet our criteria instead of merely passing judgment on the submission. As such, the reviewers are encouraged to submit issues and pull requests on the software repository. When doing so, please mention openjournals/joss-reviews#2382
so that a link is created to this thread (and I can keep an eye on what is happening). Please also feel free to comment and ask questions on this thread. In my experience, it is better to post comments/questions/suggestions as you come across them instead of waiting until you've reviewed the entire package.
We aim for reviews to be completed within about 2-4 weeks, but that's not a hard deadline. Please let me know if any of you require some more time. We can also use Whedon (our bot) to set automatic reminders if you know you'll be away for a known period of time.
Please feel free to ping me (@xuanxu) if you have any questions/concerns.
@whedon generate pdf
@jessie-dotson: you should have now an invitation here to collaborate in the repo, you have to accept it so you can edit your checklist.
@KathrynJones1 do you have the AAS manuscript number?
Hi @crawfordsm , apologies, we don't have the manuscript number as we haven't submitted yet
:wave: @jessie-dotson, @barentsen how are these reviews going?
@xuanxu I've been distracted by grant writing and other tasks, but expect to continue the review this weekend, and do not expect any issues carrying out the review! :+1:
Created https://github.com/KathrynJones1/catwoman/issues/4 to capture an easy to fix error in the tutorial.
Created https://github.com/KathrynJones1/catwoman/issues/5 to capture another easy to fix error in the tutorial.
Created https://github.com/KathrynJones1/catwoman/issues/6 to capture one more easy to fix error in the tutorial.
Another easy to fix tutorial error is captured in https://github.com/KathrynJones1/catwoman/issues/7
@jessie-dotson Thank you for finding those typos, they should all be fixed now :)
@KathrynJones1 awesome! Nice job jumping right on those! You might want to go ahead and close those issues in your catwoman github repository. That way if anyone were following the trail from here to there, it'd be really really clear the typos were all fixed!
Also, I opened a couple other issues in your repository. I didn't link them here because (imho) they aren't blockers for the JOSS review, but they are suggestions motivated by the JOSS checklist I'm working through. If they're easy to address, please consider doing so.
The text of the paper has a performance metric which I interpret as saying that it takes ~ 340 seconds to generate 1 million limb-darkened lightcurves each with 100 data points. I can't reproduce that metric. I have a different processor (2.6 GHz Intel Core i7) and am finding it takes about 4x longer. The case I ran took 1415 seconds to create 1 million light curves with 100 data points. Admittedly, I almost never benchmark code -- so it's entirely possible I didn't follow standard practices here. The notebook showing my test is attached in this zip file.
@jessie-dotson I've had a look and I think firstly one of the reasons why your code took longer is that you set the max_err=0.1
ppm however I calculated the timing based on the default setting of 1ppm instead (I could add this to the paper text to make it more explicit?) . It also seems you used a different timing method (time.process_time) whereas I used the timeit.default_timer() function (https://www.geeksforgeeks.org/timeit-python-examples/) which I tested actually gives a different (and lower) runtime for 1 mil lightcurves (i also found this which attempts to explain why there's a difference between the two: https://www.webucator.com/blog/2015/08/python-clocks-explained/). It seems that from what I've read the timeit.default_timer() may be better to use for timing sections of code although I admit I don't know much about this so happy to discuss in an new issue?
In relation to the automated tests: I do believe it is a blocking issue that the package ships with a catwoman.tests.test()
function which fails when I run it. Although automated tests are only strongly encouraged rather than required per JOSS guidelines, I do believe that if a package decides to ship with a tests.test()
function then that function should succeed and be documented.
More details here: https://github.com/KathrynJones1/catwoman/issues/11#issuecomment-670287671
@whedon generate pdf
Please add minimum version#s of dependencies. See discussion in https://github.com/KathrynJones1/catwoman/issues/10
@KathrynJones1 -- thanks for the hint to use timeit! I re-ran the performance test using timeit. I still can't reproduce the quoted 300seconds, but get 400seconds instead. I naively would've thought that my laptop (2.6 GHz Intel Core i7) would've been faster than the one quoted in the paper, but perhaps that's a naive expectation. I also tried on an older processor (1.2 GHz Intel Core m5) and obtained ~600 seconds. Since these are all within a factor of 2 and I don't have access to the specified processor, I'm calling it close enough...
I completed my review and am happy for catwoman
to be accepted by JOSS. :+1:
For future versions, I would encourage the authors to consider the following improvements:
I also have completed my review and am happy for catwoman to be accepted by JOSS. The future improvements identified by @barentsen would be extremely useful! Please do keep those in mind for the future.
Great! Thanks @jessie-dotson & @barentsen!
@whedon generate pdf
@whedon check references
Reference check summary:
OK DOIs
- 10.1086/683602 is OK
- 10.1086/345520 is OK
- 10.3847/1538-3881/aae8e5 is OK
- 10.3847/1538-4357/ab55d9 is OK
MISSING DOIs
- None
INVALID DOIs
- None
OK @KathrynJones1, everything looks good now, here are the next steps:
Once you do that please report here the version number and archive DOI
@KathrynJones1 are you having any problem or doubt about the version release/archiving process?
Hi @xuanxu, apologies, I have been moving countries this past week and have not got round to this yet, I will get back to you within the week with the DOI.
Okay so for v1.0.12, which I have labelled as the JOSS version the DOI from Zenodo is 10.5281/zenodo.3999513. Let me know if that is okay!
@whedon set v1.0.12 as version
OK. v1.0.12 is the version.
@whedon set 10.5281/zenodo.3999513 as archive
OK. 10.5281/zenodo.3999513 is the archive.
@whedon accept
Attempting dry run of processing paper acceptance...
Reference check summary (note 'MISSING' DOIs are suggestions that need verification):
OK DOIs
- 10.1086/683602 is OK
- 10.1086/345520 is OK
- 10.3847/1538-3881/aae8e5 is OK
- 10.3847/1538-4357/ab55d9 is OK
MISSING DOIs
- None
INVALID DOIs
- None
:wave: @openjournals/joss-eics, this paper is ready to be accepted and published.
Check final proof :point_right: https://github.com/openjournals/joss-papers/pull/1724
If the paper PDF and Crossref deposit XML look good in https://github.com/openjournals/joss-papers/pull/1724, then you can now move forward with accepting the submission by compiling again with the flag deposit=true
e.g.
@whedon accept deposit=true
@xuanxu @openjournals/joss-eics - just a reminder that we shouldn't publish this until we have the AAS (AJ) DOI.
Until then, I'm going to mark this as paused
/ cc @augustfly for visibility on this submission as I believe @crawfordsm is no-longer acting as software editor for AAS. (Gus - we're waiting on the AAS DOI to wrap up this submission)
@arfon I'm not finding an AAS submission id for a work related to this JOSS paper.
OK thanks @augustfly. In this comment @KathrynJones1 suggested an AJ submission was coming.
@KathrynJones1 - can you update us on your plans here?
@arfon @augustfly yes we are in the final stages of preparing the other paper and plan to submit to AJ very soon. I will let you know when we do this
@KathrynJones1 please merge this pending pull request, it adds the missing journal names to the paper.
@KathrynJones1 - please address the comment above this one.
Apologies, this message slipped through my notifications - I have merged the request now
:wave: @augustfly @KathrynJones1 - any updates on the status of the AJ paper here?
Apologies for the delay, we have now submitted our AJ paper - do you need a DOI or are you happy with just a submission ID?
I've also just edited my affiliation in the paper as it has changed recently, I hope that's okay
I see the manuscript, and I am marking it as a JOSS-related submission. We would not have an article DOI until the end of the peer review process (as Arfon knows I think).
I see the manuscript, and I am marking it as a JOSS-related submission. We would not have an article DOI until the end of the peer review process (as Arfon knows I think).
:+1: thanks. Yes, we just need the DOI from AAS publishing once the paper has been through review there.
Actually, thinking this through, I think we should probably go ahead and publish this now and then update the JOSS metadata when the AAS paper is ready. What do you all think?
I'm find doing this in metadata. This way @KathrynJones1 can update their manuscript at a later point to reference the JOSS article directly.
that is fine with me ๐
@whedon accept
Attempting dry run of processing paper acceptance...
Reference check summary (note 'MISSING' DOIs are suggestions that need verification):
OK DOIs
- 10.1086/683602 is OK
- 10.1086/345520 is OK
- 10.3847/1538-3881/aae8e5 is OK
- 10.3847/1538-4357/ab55d9 is OK
MISSING DOIs
- None
INVALID DOIs
- None
:wave: @openjournals/joss-eics, this paper is ready to be accepted and published.
Check final proof :point_right: https://github.com/openjournals/joss-papers/pull/1923
If the paper PDF and Crossref deposit XML look good in https://github.com/openjournals/joss-papers/pull/1923, then you can now move forward with accepting the submission by compiling again with the flag deposit=true
e.g.
@whedon accept deposit=true
@whedon accept deposit=true
Doing it live! Attempting automated processing of paper acceptance...
๐ฆ๐ฆ๐ฆ ๐ Tweet for this paper ๐ ๐ฆ๐ฆ๐ฆ
๐จ๐จ๐จ THIS IS NOT A DRILL, YOU HAVE JUST ACCEPTED A PAPER INTO JOSS! ๐จ๐จ๐จ
Here's what you must now do:
Party like you just published a paper! ๐๐๐ฆ๐๐ป๐ค
Any issues? Notify your editorial technical team...
@jessie-dotson, @barentsen - many thanks for your reviews here and to @xuanxu for editing this submission โจ. JOSS simply wouldn't work without the volunteer efforts of people like you.
@KathrynJones1 - your paper is now accepted into JOSS :zap::rocket::boom:
Also, please let me know when the AAS paper has been accepted and you have a DOI, at that point we will associate this paper with the AAS one.
:tada::tada::tada: Congratulations on your paper acceptance! :tada::tada::tada:
If you would like to include a link to your paper from your README use the following code snippets:
Markdown:
[](https://doi.org/10.21105/joss.02382)
HTML:
<a style="border-width:0" href="https://doi.org/10.21105/joss.02382">
<img src="https://joss.theoj.org/papers/10.21105/joss.02382/status.svg" alt="DOI badge" >
</a>
reStructuredText:
.. image:: https://joss.theoj.org/papers/10.21105/joss.02382/status.svg
:target: https://doi.org/10.21105/joss.02382
This is how it will look in your documentation:
We need your help!
Journal of Open Source Software is a community-run journal and relies upon volunteer effort. If you'd like to support us please consider doing either one (or both) of the the following:
@arfon @jessie-dotson @barentsen @xuanxu ๐๐ Fantastic! Thank you very much for all of your constructive reviews and help through the process!
@arfon yes I will let you know ๐