Skip to content
Snippets Groups Projects
Commit ca4b4956 authored by Bienchen's avatar Bienchen
Browse files

Write '?' for empty values in the mmCIF writer - '?' means 'unknown', '.' means 'inapplicable'

parent a96b7f73
No related branches found
No related tags found
No related merge requests found
......@@ -115,7 +115,7 @@ public:
}
}
if(string_value == "") {
value.value_ = ".";
value.value_ = "?";
} else if(has_space) {
value.value_ = "'" + string_value + "'";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment