-
Notifications
You must be signed in to change notification settings - Fork 63
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
Fix ability to use plaintext bed in add-track CLI #3902
Conversation
return { | ||
type: 'UNSUPPORTED', | ||
} | ||
} | ||
|
||
if (/\.bed$/i.test(location)) { |
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.
There were two checks for .bed$, first here, saying UNSUPPORTED
@@ -547,116 +518,81 @@ export default class AddTrack extends JBrowseCommand { | |||
indexType: index?.toUpperCase().endsWith('CSI') ? 'CSI' : 'TBI', | |||
}, | |||
} | |||
} | |||
|
|||
if (/\.bed$/i.test(location)) { |
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.
Second here
Codecov Report
@@ Coverage Diff @@
## main #3902 +/- ##
==========================================
- Coverage 64.49% 64.49% -0.01%
==========================================
Files 1004 1004
Lines 29804 29803 -1
Branches 7143 7143
==========================================
- Hits 19222 19220 -2
- Misses 10417 10418 +1
Partials 165 165
... and 1 file with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
No description provided.