#include #include #include #include #include #include "json.hpp" int main(int argc, char** argv) { // read JSON file and store in jsonObject std::ifstream file; file.open(argv[1]); nlohmann::json jsonObject; // Store the contents filename into jsonObject if (file.is_open()) { file >> jsonObject; } std::string sampleName; // Sample key name to iterate nlohmann::json outputJSON; // output JSON file }