Feature / WIP: TSV sample loading - #149
Open
lkwhite wants to merge 1 commit into
Open
Conversation
…, and validator Implements foundation for bulk sample loading via TSV manifest files. This is Phase 1 of a multi-phase implementation. New Features: - TSV parser with full error/warning reporting - Multi-strategy path resolution (absolute, TSV-relative, workspace-relative) - Sample validation with file existence checks - Import command UI with preview and confirmation - Smart loading strategy (eager for small batches, lazy for large) Files Added: - src/services/tsv-parser.ts - Parse TSV with validation - src/services/tsv-path-resolver.ts - Resolve file paths - src/services/tsv-validator.ts - Validate samples before import - src/commands/tsv-commands.ts - Import command implementation - src/services/__tests__/tsv-parser.test.ts - 28 test cases - docs/TSV_IMPORT_PROGRESS.md - Implementation progress tracking Files Modified: - package.json - Added importSamplesFromTSV command - src/extension.ts - Registered TSV command Status: - ✅ Phase 1 Complete: Parsing & validation -⚠️ Phase 2 Partial: UI implemented, kernel loading stubbed - ⬜ Phase 3 Pending: Actual kernel integration - ⬜ Phase 4 Pending: UI integration (samples panel grouping, session persistence) Next Steps: - Implement actual kernel loading in loadSamplesFromTSV() - Add lazy loading trigger in plot commands - Add tests for path resolver and validator - Integrate with Samples panel UI Related: Addresses future TSV import feature outlined in docs/TSV_IMPORT_FUTURE_DESIGN.md
jayhesselberth
force-pushed
the
claude/review-repo-status-01Nr8A7Yeb4sHzxSzBJ8FFsu
branch
from
March 3, 2026 22:05
c46b2e2 to
e736707
Compare
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
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.
Implements foundation for bulk sample loading via TSV manifest files. This is Phase 1 of a multi-phase implementation.
New Features:
Files Added:
Files Modified:
Status:
Next Steps:
Related: Addresses future TSV import feature outlined in docs/TSV_IMPORT_FUTURE_DESIGN.md