// Copyright 2021 Global Phasing Ltd. #include #include // for cif::read #include // for cif::read_mmjson #include // for MaybeGzipped namespace gemmi { cif::Document read_cif_gz(const std::string& path, int check_level) { return cif::read(MaybeGzipped(path), check_level); } bool check_cif_syntax_gz(const std::string& path, std::string* msg) { return cif::check_syntax(MaybeGzipped(path), msg); } cif::Document read_mmjson_gz(const std::string& path) { return cif::read_mmjson(MaybeGzipped(path)); } CharArray read_into_buffer_gz(const std::string& path) { return read_into_buffer(MaybeGzipped(path)); } cif::Document read_cif_from_memory(const char* data, size_t size, const char* name, int check_level) { return cif::read_memory(data, size, name, check_level); } cif::Document read_first_block_gz(const std::string& path, size_t limit) { cif::Document doc; doc.source = path; cif::read_one_block(doc, MaybeGzipped(path), limit); return doc; } } // namespace gemmi