-
Notifications
You must be signed in to change notification settings - Fork 7
feat: generate taxa tree from assemblies and display accurate assembly count in sunburst (#522) #550
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
Merged
feat: generate taxa tree from assemblies and display accurate assembly count in sunburst (#522) #550
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
fba9bac
feat: update taxa tree to build from assemblies and include assembly …
hunterckx 6e907f0
chore: apply ruff (#522)
hunterckx 36300c8
feat: use assembly count from tree data in sunburst (#522)
hunterckx 7ed661b
docs: add a couple comments to `get_species_subtree` (#522)
hunterckx f7f4171
docs: add `build_files` docstring to emphasize requirements for `taxo…
hunterckx 2f92b0a
docs: add additional comment and detail regarding order of taxonomic …
hunterckx 10bea59
feat: add a couple taxonomy tree checks to qc report (#522)
hunterckx 602f7b2
feat: fix assembly count check and add species node check (#522)
hunterckx 1994a53
feat: add qc check for list of taxonomic levels (#522)
hunterckx 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
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
2,284 changes: 1,142 additions & 1,142 deletions
2,284
catalog/build/intermediate/genomes-from-ncbi.tsv
Large diffs are not rendered by default.
Oops, something went wrong.
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,25 +1,25 @@ | ||
taxonomy_id name rank | ||
5207 Cryptococcus neoformans SPECIES | ||
11050 Flaviviridae FAMILY | ||
11320 Influenza A virus | ||
4827 Mucorales ORDER | ||
5052 Aspergillus GENUS | ||
11018 Togaviridae FAMILY | ||
199306 Coccidioides posadasii SPECIES | ||
12058 Picornaviridae FAMILY | ||
5037 Histoplasma capsulatum SPECIES | ||
1980415 Nairoviridae FAMILY | ||
3418604 Betacoronavirus pandemicum SPECIES | ||
11158 Paramyxoviridae FAMILY | ||
38574 Leishmania donovani species complex SPECIES_GROUP | ||
1773 Mycobacterium tuberculosis SPECIES | ||
5807 Cryptosporidium parvum SPECIES | ||
1980418 Phenuiviridae FAMILY | ||
1980413 Hantaviridae FAMILY | ||
11266 Filoviridae FAMILY | ||
11018 Togaviridae FAMILY | ||
10244 Monkeypox virus SPECIES | ||
5763 Naegleria fowleri SPECIES | ||
1980416 Peribunyaviridae FAMILY | ||
5833 Plasmodium falciparum SPECIES | ||
1980418 Phenuiviridae FAMILY | ||
3418604 Betacoronavirus pandemicum SPECIES | ||
498019 Candidozyma auris SPECIES | ||
11158 Paramyxoviridae FAMILY | ||
38574 Leishmania donovani species complex SPECIES_GROUP | ||
5763 Naegleria fowleri SPECIES | ||
10244 Monkeypox virus SPECIES | ||
1980413 Hantaviridae FAMILY | ||
5207 Cryptococcus neoformans SPECIES | ||
5807 Cryptosporidium parvum SPECIES | ||
11320 Influenza A virus | ||
5052 Aspergillus GENUS | ||
1980416 Peribunyaviridae FAMILY | ||
11050 Flaviviridae FAMILY | ||
1980415 Nairoviridae FAMILY | ||
4827 Mucorales ORDER | ||
11617 Arenaviridae FAMILY | ||
5037 Histoplasma capsulatum SPECIES |
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.
The pluralization logic treats 0 as singular ("Assembly"). Change the condition to
assemblyCount !== 1
so that 0, 2+ use the plural form.Copilot uses AI. Check for mistakes.