-
Notifications
You must be signed in to change notification settings - Fork 0
feat: Collection of Minor Changes after review #101
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
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
b319bed
chore: update readme
znorgaard 5ffc4ba
test: lock pixi env in gh action
znorgaard c74595f
chore: spacing
znorgaard ed011ff
refactor(duckdb): add shared sequences_table_exists helper
znorgaard aa12fe3
refactor(append-contig): reuse table-exists helper and harden INSERT
znorgaard f18e338
feat(fasta): order FASTA output by genomic position
znorgaard d62e86e
chore(compute-haplotypes): log dropped samples and document outputs
znorgaard 9705232
refactor(extract): single-source table URIs and fix docstrings
znorgaard cfdf441
fix(haplotype-compat): informative parse errors and accurate docs
znorgaard 06f31cd
docs(test-data): document the empty-loci ValueError
znorgaard 698b222
refactor(hail): use pathlib for connector JAR path handling
znorgaard 90e7de1
test(hail): cover sub-1GB Spark memory guards
znorgaard 981e161
style: apply modern typing, logging, and constant conventions
znorgaard fbced5c
refactor(workflows): use curl, validate chromosomes, clarify comments
znorgaard c87b97f
fix pixi locking
znorgaard 357aca1
refactor: replace to_hashable_items with frozenset(d.items())
znorgaard 8ce50fb
refactor: drop n_groups from _compute_locus_groups return
znorgaard e712a72
fix(haplotype): break sort ties for co-located SNP + insertion
znorgaard 89c8011
fix(pixi): restore check-lock task
ameynert 5ebd6b8
chore(deps): require duckdb>=1.4.0 for to_arrow_reader
ameynert b7a3d25
fix(hail): harden S3 connector JAR check to is_file
ameynert 028e0e0
docs(haplotype): expand the sort-tiebreak comment
ameynert adcc1e7
docs(compute-haplotypes): clarify checkpoint cleanup ownership
ameynert d7444a6
docs(compute-haplotypes): clarify dropped-sample log message
ameynert c4ed30f
chore: regen pixi lock file
ameynert c21561b
chore: bump pixi and uv versions in CI
ameynert File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,7 +5,7 @@ on: | |
| workflow_call: | ||
|
|
||
| env: | ||
| UV_VERSION: 0.9.5 | ||
| UV_VERSION: 0.11.28 | ||
|
|
||
| jobs: | ||
| Tests: | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,2 @@ | ||
| from typing import TypeAlias | ||
|
|
||
| HailPath: TypeAlias = str | ||
| type HailPath = str | ||
| """Type alias for filesystem paths accepted by Hail: local, S3 (s3a://), GCS (gs://), or HDFS (hdfs://).""" # noqa: E501 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
Fix the sentence structure.
Replace the comma splice with clearer wording, for example: “Log in before running any Hail-dependent tools; the
gcloudCLI must be installed first:”🤖 Prompt for AI Agents