-
Notifications
You must be signed in to change notification settings - Fork 2
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
change cli to remove inputs as options #185
Conversation
Warning Rate limit exceeded@pdimens has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 20 minutes and 9 seconds before requesting another review. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThe pull request introduces modifications across multiple files in the Harpy project, focusing on command-line argument parsing, workflow file configurations, and output file handling. The primary changes involve updating the Changes
Possibly related PRs
Suggested labels
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
harpy/bin/inline_to_haplotag.py (1)
13-13
: Remove redundantrequired=True
parameter from positional arguments.The
required=True
parameter is redundant for positional arguments as they are required by default.Apply this diff to remove the redundant parameter:
-parser.add_argument("forward", required = True, type = str, help = "Forward reads of paired-end FASTQ file pair (gzipped)") -parser.add_argument("reverse", required = True, type = str, help = "Reverse reads of paired-end FASTQ file pair (gzipped)") +parser.add_argument("forward", type = str, help = "Forward reads of paired-end FASTQ file pair (gzipped)") +parser.add_argument("reverse", type = str, help = "Reverse reads of paired-end FASTQ file pair (gzipped)")Also applies to: 17-19
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (4)
harpy/bin/inline_to_haplotag.py
(1 hunks)harpy/snakefiles/simulate_linkedreads.smk
(2 hunks)harpy/snakefiles/simulate_snpindel.smk
(4 hunks)harpy/snakefiles/simulate_variants.smk
(4 hunks)
🔇 Additional comments (10)
harpy/snakefiles/simulate_variants.smk (4)
61-61
: LGTM!The changes improve storage efficiency by marking intermediate files as temporary and compressing output files.
Also applies to: 80-80, 84-86
116-117
: LGTM!The changes improve storage efficiency by marking intermediate files as temporary.
134-134
: LGTM!The changes improve storage efficiency by compressing output files and correctly handle file operations.
Also applies to: 136-142
147-147
: LGTM!The changes maintain consistency by updating input file paths to use the compressed file format.
Also applies to: 149-149
harpy/snakefiles/simulate_linkedreads.smk (2)
172-172
: LGTM!The command syntax is correctly updated to use positional arguments.
205-205
: LGTM!The example command in the workflow summary is correctly updated to reflect the new positional argument format.
harpy/snakefiles/simulate_snpindel.smk (4)
97-97
: LGTM!The changes improve storage efficiency by marking intermediate files as temporary.
118-118
: LGTM!The changes improve storage efficiency by compressing output files and correctly handle file operations.
Also applies to: 123-128
166-167
: LGTM!The changes improve storage efficiency by marking intermediate files as temporary.
186-186
: LGTM!The changes improve storage efficiency by compressing output files and correctly handle file operations. The input file paths are correctly updated to maintain consistency.
Also applies to: 188-194, 199-199, 201-201
Summary by CodeRabbit
New Features
inline_to_haplotag.py
script with simplified argument structureBug Fixes
Refactor
Chores