Refinement from mmCIF format #476
-
|
I am running the following command, using the provided docker image Giving as input a .cif file downloaded from PDB: https://www.rcsb.org/structure/1MHP I get the following error: The table Now I rerun the command with the new file, and I get the following error An additional question, is the option of outputting a .cif file available? I see cif_writer in github but not sure what is the command line option that outputs a cif file. Any help is appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
|
The option to output mmCIF files is Regarding your other issues, there was a recent change in how Rosetta reads mmCIF files, allowing for more robust reading. (Most notably, the ignoring of the atom_site_table if it's the last entry in the file is no longer an issue.) -- That should be available with the most recent development version built from the GitHub checkout. It should also address the |
Beta Was this translation helpful? Give feedback.
The option to output mmCIF files is
-out:mmCIF-- just add that to the command line and Rosetta should output mmCIF files instead of PDB files. (There's also an-out:mmCIF_gzflag you can add to the-out:mmCIFone to get compressed outputs to save disk space -- Rosetta should be able to automatically read gz compressed inputs.)Regarding your other issues, there was a recent change in how Rosetta reads mmCIF files, allowing for more robust reading. (Most notably, the ignoring of the atom_site_table if it's the last entry in the file is no longer an issue.) -- That should be available with the most recent development version built from the GitHub checkout. It should also address the
Unreco…