1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
/*-
* SPDX-License-Identifier: BSD-2-Clause
*
* Copyright (c) 2020 NKI/AVL, Netherlands Cancer Institute
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include <clipper/clipper.h>
#include <cif++.hpp>
// My apologies, but this code is emitting way too many warnings...
#if defined(_MSC_VER)
# pragma warning(disable : 4244) // possible loss of data (in conversion to smaller type)
#endif
namespace pdb_redo
{
using cif::kPI;
template <typename FTYPE = float>
class Map
{
public:
typedef FTYPE ftype;
typedef typename clipper::Xmap<ftype> Xmap;
Map();
Map(const Map &rhs) = default;
~Map();
Map &operator=(const Map &rhs) = default;
void calculateStats();
double rmsDensity() const { return mRMSDensity; }
double meanDensity() const { return mMeanDensity; }
operator Xmap &() { return mMap; }
operator const Xmap &() const { return mMap; }
Xmap &get() { return mMap; }
const Xmap &get() const { return mMap; }
// These routines work with CCP4 map files
void read(const std::filesystem::path &f);
void write(const std::filesystem::path &f);
void write_masked(std::ostream &os, clipper::Grid_range range);
void write_masked(const std::filesystem::path &f,
clipper::Grid_range range);
clipper::Spacegroup spacegroup() const { return mMap.spacegroup(); }
clipper::Cell cell() const { return mMap.cell(); }
/// \brief Create a masked map blotting out the density for all \a atom_ids in the structure contained in \a db
Map masked(const cif::mm::structure &structure, const std::vector<cif::mm::atom> &atom_ids) const;
/// \brief Return the z-weighted density sum for the atoms \a atom_ids in the structure contained in \a db
float z_weighted_density(const cif::mm::structure &structure, const std::vector<cif::mm::atom> &atom_ids) const;
private:
Xmap mMap;
double mMinDensity, mMaxDensity;
double mRMSDensity, mMeanDensity;
};
// --------------------------------------------------------------------
bool IsMTZFile(const std::string &p);
// --------------------------------------------------------------------
template <typename FTYPE = float>
class MapMaker
{
public:
typedef Map<FTYPE> MapType;
typedef typename MapType::Xmap Xmap;
enum AnisoScalingFlag
{
as_None,
as_Observed,
as_Calculated
};
MapMaker();
~MapMaker();
MapMaker(const MapMaker &) = delete;
MapMaker &operator=(const MapMaker &) = delete;
void loadMTZ(const std::filesystem::path &mtzFile,
float samplingRate,
std::initializer_list<std::string> fbLabels = { "FWT", "PHWT" },
std::initializer_list<std::string> fdLabels = { "DELFWT", "PHDELWT" },
std::initializer_list<std::string> foLabels = { "FP", "SIGFP" },
std::initializer_list<std::string> fcLabels = { "FC_ALL", "PHIC_ALL" },
std::initializer_list<std::string> faLabels = { "FAN", "PHAN" });
void loadMaps(
const std::filesystem::path &fbMapFile,
const std::filesystem::path &fdMapFile,
float reshi, float reslo);
// following works on both mtz files and structure factor files in CIF format
void calculate(const std::filesystem::path &hklin,
const cif::mm::structure &structure,
bool noBulk, AnisoScalingFlag anisoScaling,
float samplingRate, bool electronScattering = false,
std::initializer_list<std::string> foLabels = { "FP", "SIGFP" },
std::initializer_list<std::string> freeLabels = { "FREE" });
void recalc(const cif::mm::structure &structure,
bool noBulk, AnisoScalingFlag anisoScaling,
float samplingRate, bool electronScattering = false);
void printStats();
void writeMTZ(const std::filesystem::path &file,
const std::string &project, const std::string &crystal);
MapType &fb() { return mFb; }
MapType &fd() { return mFd; }
MapType &fa() { return mFa; }
const MapType &fb() const { return mFb; }
const MapType &fd() const { return mFd; }
const MapType &fa() const { return mFa; }
double resLow() const { return mResLow; }
double resHigh() const { return mResHigh; }
const clipper::Spacegroup &spacegroup() const { return mHKLInfo.spacegroup(); }
const clipper::Cell &cell() const { return mHKLInfo.cell(); }
const clipper::Grid_sampling &gridSampling() const { return mGrid; }
private:
void loadFoFreeFromReflectionsFile(const std::filesystem::path &hklin);
void loadFoFreeFromMTZFile(const std::filesystem::path &hklin,
std::initializer_list<std::string> foLabels,
std::initializer_list<std::string> freeLabels);
void fixMTZ();
MapType mFb, mFd, mFa;
clipper::Grid_sampling mGrid;
double mResLow, mResHigh;
int mNumRefln = 1000, mNumParam = 20;
// Cached raw data
clipper::HKL_info mHKLInfo;
clipper::HKL_data<clipper::data32::F_sigF> mFoData;
clipper::HKL_data<clipper::data32::Flag> mFreeData;
clipper::HKL_data<clipper::data32::F_phi> mFcData, mFbData, mFdData, mFaData;
clipper::HKL_data<clipper::data32::Phi_fom> mPhiFomData;
};
} // namespace pdb_redo
|