-
-
Notifications
You must be signed in to change notification settings - Fork 105
Export coco #1425
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
Draft
JasonWildMe
wants to merge
13
commits into
main
Choose a base branch
from
export-coco
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Export coco #1425
+1,675
−0
Conversation
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
Documents the design for exporting encounter search results to COCO format for MIEW-ID training. Includes JSON schema, individual ID mapping strategy, filtering rules, and code architecture. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Detailed step-by-step plan for implementing COCO format export: - EncounterCOCOExportFile core class with JSON building - EncounterSearchExportCOCO servlet - web.xml registration - UI integration in exportSearchResults.jsp - Unit tests Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Create the initial skeleton class for COCO format export with constructor and placeholder writeTo method. Add Apache Commons Compress dependency to pom.xml for tar.gz support. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Reverts unintentional reformatting while preserving the COCO export additions: - pom.xml: commons-compress dependency - web.xml: COCO servlet definition, mapping, and security rule Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1425 +/- ##
=======================================
Coverage 47.29% 47.29%
=======================================
Files 272 272
Lines 9722 9722
Branches 2860 2952 +92
=======================================
Hits 4598 4598
+ Misses 4893 4888 -5
- Partials 231 236 +5
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Switch from tar.gz (commons-compress) to ZIP format using built-in java.util.zip. This removes the external dependency and produces a more user-friendly format for biologists. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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.
[Plain-text summary description of the solution. Include any class updates, new or edited functions, significant changes to UX, etc]
PR fixes #1424
Before you Submit!