Update citation nature genetics#8
Conversation
Fill in journal, DOI, and full author list in inst/CITATION and the README citation blocks, replacing the TBD placeholders now that the manuscript is published as Iyer et al. (2026), Nature Genetics, doi:10.1038/s41588-026-02661-4.
📝 WalkthroughWalkthroughThe change finalizes the Nature Genetics citation across package metadata, README files, and release notes, and updates ChangesPublication citation updates
Source artifact ignore rules
Estimated code review effort: 1 (Trivial) | ~5 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In @.gitignore:
- Line 15: Correct the object-file ignore rule in .gitignore: replace the
negated nonexistent .githubsrc pattern with an ignore pattern for object files
under src/, using src/*.o or src/**/*.o if nested build outputs are possible.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: e3ac76fd-ddfd-4b25-abac-ed1a09d43d98
⛔ Files ignored due to path filters (2)
src/RcppExports.ois excluded by!**/*.osrc/code.ois excluded by!**/*.o
📒 Files selected for processing (5)
.gitignoreNEWS.mdREADME.RmdREADME.mdinst/CITATION
| .* | ||
| !/.gitignore | ||
| !/.github No newline at end of file | ||
| !/.githubsrc/*.o |
There was a problem hiding this comment.
🎯 Functional Correctness | 🟠 Major | ⚡ Quick win
Fix the object-file ignore pattern.
!/.githubsrc/*.o targets a nonexistent .githubsrc path and negates the rule instead of ignoring object files under src/. Consequently, src/*.o artifacts can still be committed.
-!/.githubsrc/*.o
+src/*.oIf nested build outputs are possible, use src/**/*.o instead.
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| !/.githubsrc/*.o | |
| src/*.o |
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In @.gitignore at line 15, Correct the object-file ignore rule in .gitignore:
replace the negated nonexistent .githubsrc pattern with an ignore pattern for
object files under src/, using src/*.o or src/**/*.o if nested build outputs are
possible.
Summary
Adds the citation for the published Nature Genetics paper to the SelectSim repository.
Changes
README.mdwith the Nature Genetics paper citation.src/and added appropriate ignore rules where needed.Test plan
devtools::document()run to regenerateNAMESPACEand manual pages.devtools::check()completed successfully.Additional notes
This pull request does not change package behavior or analysis results. It only updates the repository documentation to reference the published Nature Genetics article.
Summary by CodeRabbit