-
Notifications
You must be signed in to change notification settings - Fork 94
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
[FEATURE] Add tsv (tab separated) as save format #331
Comments
Just adding notes, I was testing this and the issue is we don't allow filename with |
FYI, this doesn't handle windows file paths: File <string>:1
"c:\Users\XXX\cleaned.tsv"
^
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape I had to do: fe_output = f_output.replace("\\", "\\\\")
|
Changing the last directive to File c:\Users\XXX\.venv\lib\site-packages\fugue\workflow\workflow.py:1518, in FugueWorkflow.run(self, *args, **kwargs)
1516 if ctb is None: # pragma: no cover
1517 raise
-> 1518 raise ex.with_traceback(ctb)
1519 self._computed = True
1520 return DataFrames(
1521 {
...
231 pdf = _safe_load_csv(
232 p.uri, **{"index_col": False, "header": None, "names": columns, **kw}
233 )
ValueError: columns must be set if without header |
@keiranmraine please see the issue 332 ^^^ |
Closing |
Is your feature request related to a problem? Please describe.
TSV files are used extensively in bioinformatic spaces.
Describe the solution you'd like
Support
SAVE
direct to tsv.Describe alternatives you've considered
Outputter following
SAVE AND LOAD
The text was updated successfully, but these errors were encountered: