Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 718 Bytes

README.md

File metadata and controls

42 lines (32 loc) · 718 Bytes

FISpact transLATOR = FISLATOR

Easy to build via cmake, but does require the following dependencies, provided in the subdirectory 'dependencies':

  • CLI11 (header only)
  • nlohmann_json (header only)

Please use recursive clone to get the dependencies!

git clone --recursive -j8 https://github.com/fispact/fislator

Then build via:

mkdir build
cd build
cmake ..
make

To convert to csv do:

./fislator -f test.json --csv

Supports multiple file formats (even at the same time). The following does both tab and csv files.

./fislator -f test.json --csv --tab

About

Translates JSON to other common file formats.

  • csv
  • tabulated?
  • xml?
  • hdf5?
  • ...

Work ongoing...