Skip to content

Commit

Permalink
to_mmcif: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
keitaroyam authored Nov 29, 2024
1 parent fd3492e commit ce840fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/to_mmcif.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,7 @@ void update_mmcif_block(const Structure& st, cif::Block& block, MmcifOutputGroup
if (st.meta.has(&RefinementInfo::fsc_work))
add("pdbx_average_fsc_work", number_or_qmark(ref.fsc_work));
if (st.meta.has(&RefinementInfo::fsc_free))
add("pdbx_average_fsc_work", number_or_qmark(ref.fsc_free));
add("pdbx_average_fsc_free", number_or_qmark(ref.fsc_free));
if (st.meta.has(&RefinementInfo::cc_intensity_work))
add("ccp4_correlation_coeff_I_to_Fcsq_work", number_or_qmark(ref.cc_intensity_work));
if (st.meta.has(&RefinementInfo::cc_intensity_free))
Expand Down

0 comments on commit ce840fd

Please sign in to comment.