-
Notifications
You must be signed in to change notification settings - Fork 11
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
feat: display seqvars query execution results in UI (#1952) #1957
Merged
holtgrewe
merged 6 commits into
main
from
1952-display-seqvars-query-job-results-with-ui
Oct 10, 2024
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
cd58339
feat: display seqvars query execution results in UI (#1952)
holtgrewe 6855f41
wip
holtgrewe fbabf26
wip
holtgrewe 1195ef1
Apply suggestions from code review
holtgrewe 91ea836
wip
holtgrewe c0dad7d
Update frontend/src/seqvars/components/QueryResults/CellGeneFlags.vue
holtgrewe 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 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
27 changes: 27 additions & 0 deletions
27
backend/ext_gestaltmatcher/migrations/0003_auto_20241009_0639.py
This file contains 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Generated by Django 3.2.25 on 2024-10-09 06:39 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("ext_gestaltmatcher", "0002_smallvariantquerypediascores"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="smallvariantquerygestaltmatcherscores", | ||
name="id", | ||
field=models.BigAutoField( | ||
auto_created=True, primary_key=True, serialize=False, verbose_name="ID" | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="smallvariantquerypediascores", | ||
name="id", | ||
field=models.BigAutoField( | ||
auto_created=True, primary_key=True, serialize=False, verbose_name="ID" | ||
), | ||
), | ||
] |
This file contains 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 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Generated by Django 3.2.25 on 2024-09-05 10:17 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("seqvars", "0009_alter_seqvarsresultrow_genome_release"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name="seqvarsqueryexecutionbackgroundjob", | ||
options={"ordering": ["-pk"]}, | ||
), | ||
migrations.AlterModelOptions( | ||
name="seqvarsresultrow", | ||
options={"ordering": ["chrom_no", "pos", "ref_allele", "alt_allele"]}, | ||
), | ||
migrations.AlterModelOptions( | ||
name="seqvarsresultset", | ||
options={"ordering": ["-date_created"]}, | ||
), | ||
migrations.AlterField( | ||
model_name="seqvarsresultrow", | ||
name="genome_release", | ||
field=models.CharField( | ||
choices=[("grch37", "GRCh37"), ("grch38", "GRCh38")], max_length=32 | ||
), | ||
), | ||
] |
This file contains 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 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.
💡 Codebase verification
Checksum assignments not found in the codebase.
The snapshots show that the
checksum
field isNone
for all entries inImportCreateWithSeqvarsVcfTest::test_run internal files
. Additionally, the codebase does not assign values tofile_attributes["checksum"]
, which may result in missing checksum validations.Please ensure that checksum values are correctly calculated and assigned to maintain data integrity.
🔗 Analysis chain
Well-structured snapshot for internal files, with a few points to verify.
The snapshot for
ImportCreateWithSeqvarsVcfTest::test_run internal files
is well-organized and includes the expected files (original copy, ingested VCF, and index). The use of UUIDs in paths is a good practice for ensuring unique storage per case.However, please verify the following:
checksum
field isNone
for all entries. Is this intentional?file_attributes
andidentifier_map
are empty for ingested files. Is this expected behavior?Re-running verification to check checksum implementations.
Further verification needed for checksum assignments.
To ensure that
checksum
values are being correctly calculated and assigned, please run the following script:🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 107
Script:
Length of output: 167
Script:
Length of output: 76