-
Notifications
You must be signed in to change notification settings - Fork 5
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
updated the comparison function format #73
Merged
waterflow80
merged 4 commits into
EBIvariation:main
from
waterflow80:update-comparison-format
Jan 8, 2024
Merged
updated the comparison function format #73
waterflow80
merged 4 commits into
EBIvariation:main
from
waterflow80:update-comparison-format
Jan 8, 2024
Conversation
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
apriltuesday
approved these changes
Jan 3, 2024
nitin-ebi
approved these changes
Jan 5, 2024
@@ -19,21 +19,22 @@ public class SeqColComparisonResultEntity { | |||
/** | |||
* The "arrays" attribute contains three sub-attributes: |
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.
Suggested change
* The "arrays" attribute contains three sub-attributes: | |
* The "attributes" contains three sub-attributes: |
@@ -19,21 +19,22 @@ public class SeqColComparisonResultEntity { | |||
/** | |||
* The "arrays" attribute contains three sub-attributes: | |||
* "a_only", "b_only", "a_and_b"*/ | |||
private SortedMap<String, List<String>> arrays; | |||
private SortedMap<String, List<String>> attributes; | |||
|
|||
/** | |||
* The "elements" attribute contains three sub-attributes: |
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.
Suggested change
* The "elements" attribute contains three sub-attributes: | |
* The "array_elements" attribute contains three sub-attributes: |
…_count, b_count, ...
See latest commit, with the following comparison result: {
"digests": {
"a": "3mTg0tAA3PS-R1TzelLVWJ2ilUzoWfVq",
"b": "rkTW1yZ0e22IN8K-0frqoGOMT8dynNyE"
},
"attributes": {
"a_and_b": [
"sequences",
"names",
"lengths",
"md5_sequences",
"sorted_name_length_pairs"
],
"a_only": [],
"b_only": []
},
"array_elements": {
"a_count": {
"lengths": 16,
"md5_sequences": 16,
"names": 16,
"sequences": 16,
"sorted_name_length_pairs": 16
},
"b_count": {
"lengths": 16,
"md5_sequences": 16,
"names": 16,
"sequences": 16,
"sorted_name_length_pairs": 16
},
"a_and_b_count": {
"lengths": 16,
"md5_sequences": 16,
"names": 0,
"sequences": 16,
"sorted_name_length_pairs": 0
},
"a_and_b_same_order": {
"lengths": true,
"md5_sequences": true,
"names": null,
"sequences": true,
"sorted_name_length_pairs": null
}
}
} |
tcezard
approved these changes
Jan 7, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
closes #71
Updated the comparison function format as discussed in issue #71 .
The new comparison result of comparing these two seqcol objects:
3mTg0tAA3PS-R1TzelLVWJ2ilUzoWfVq
andrkTW1yZ0e22IN8K-0frqoGOMT8dynNyE
is :Implemented the logic described here.