-
Notifications
You must be signed in to change notification settings - Fork 6
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: add csv2fasta #61
Conversation
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.
Comprehensive tests, very nice!
One of the tests is failing (as you probably have noticed yourself).
I wonder if we're going to run into issues with the --quote_character
. CSV parsing libraries exist that auto-detect this and I wonder if we should do the same? The same holds for the delimiter, people often don't know what Excel will generate?
I agree, here the python csv reader is used, which uses the 'excel' dialect by default, see https://docs.python.org/3/library/csv.html#csv.reader. Alternernatively, we could use a |
Sure, good idea! |
@DriesSchaumont Is this PR ready to be merged? |
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.
We decided to move this component to a separate package :)
Closing in favour of viash-hub/craftbox#1 |
Description
FEAT: add csv2fasta
Issue ticket number
Closes #xxxxChecklist before requesting a review
I have performed a self-review of my code
Conforms to the Contributing guidelines
Proposed changes are described in the CHANGELOG.md
I have tested my code with
viash ns test --parallel -q <name or namespace>
Check the correct box. Does this PR contain: