entab icon indicating copy to clipboard operation
entab copied to clipboard

* -> TSV

Results 21 entab issues
Sort by recently updated
recently updated
newest added

When I try to load an FID file from chemstation Rev. C.01.07 via entab-cli and it throws an error: ``` > cat FID1A.ch | entab ##### AN ERROR OCCURRED ####...

I believe the Core of the Chemstation .reg format is a CArchive https://learn.microsoft.com/en-us/cpp/mfc/reference/carchive-class?view=msvc-170 here is a reader/writer implemented in cpp: https://github.com/pixelspark/corespark/blob/e2aa78fe13e273fcc9bb2665ab4c700e89895741/Libraries/atlmfc/src/mfc/arcobj.cpp The "data type numbers" are random / depend on...

This is an LC-MS binary format generated by LabSolutions. There's also a Shimadzu QGD format for GC-MS data; I'm not sure how much crossover there is between these. There don't...

Just saw this newish python package with documentation for some formats like Agilent FID (https://rainbow-api.readthedocs.io/en/latest/agilent/ch_fid.html) and Waters `.raw` (https://rainbow-api.readthedocs.io/en/latest/waters.html) that aren't yet supported in Entab. Thought it might be of...

We should maybe add more common magic sequences to `filetype.rs`? Also for really unknown files, we should maybe capture the first 8 (?) bytes (change `[Unknown](https://github.com/bovee/entab/blob/f4e0f3cb7ca4383145cd3575a0e80962d07dcdee/entab/src/filetype.rs#L79)` to `Unknown([u8; 8])`?) and...

Hello I've used entab 0.3.1 on a RAW file generated by a Thermo LCMS using Xcalibur 3.1 but the data isn't getting processed. The file is opened and the columns...

Hi Roderick, I received a Thermo Raw file from a new twitter friend that we'd like to be able to convert with entab, but I'm running into an error. I...

I don't think there's a good binding library like pyo3 or wasm-bindgen, but this should be doable via straight FFI: https://github.com/felipenoris/JuliaPackageWithRustDep.jl I'm not exactly sure what the best record format...

This is mostly necessary to support XML-based file formats like some of the Agilent MassHunter formats, mzML, etc. There are a couple existing streaming XML Rust parsers that we could...

When playing around with `read_into`, I wrote a reader that operates more functionally and maybe could be modified into something that could do e.g. multithreaded map-reduce? ```rust /// Apply `fxn`...