Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DIALS 3.18.2 #58

Open
wants to merge 749 commits into
base: dials-3.18
Choose a base branch
from
Open

DIALS 3.18.2 #58

wants to merge 749 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on May 28, 2024

  1. Configuration menu
    Copy the full SHA
    970dde9 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2024

  1. Configuration menu
    Copy the full SHA
    a8b79cc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7d10c26 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2024

  1. Configuration menu
    Copy the full SHA
    c462423 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2024

  1. Configuration menu
    Copy the full SHA
    127375a View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2024

  1. Update CHANGELOG.rst for 2024.5 release

    [skip ci]
    bkpoon committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    05bcfc6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d5a87e0 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2024

  1. Configuration menu
    Copy the full SHA
    c3fc892 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2024

  1. Configuration menu
    Copy the full SHA
    5f6c169 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f73e102 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2024

  1. Configuration menu
    Copy the full SHA
    b88f7d7 View commit details
    Browse the repository at this point in the history
  2. Remove as_pdb_input

    terwill committed Jun 6, 2024
    Configuration menu
    Copy the full SHA
    51c23a2 View commit details
    Browse the repository at this point in the history
  3. Remove as_pdb_input

    terwill committed Jun 6, 2024
    Configuration menu
    Copy the full SHA
    df59536 View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2024

  1. Remove as_pdb_input

    terwill committed Jun 7, 2024
    Configuration menu
    Copy the full SHA
    34d8c91 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a2dd8f3 View commit details
    Browse the repository at this point in the history
  3. Remove as_pdb_input()

    terwill committed Jun 7, 2024
    Configuration menu
    Copy the full SHA
    117d8d2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6b87fc0 View commit details
    Browse the repository at this point in the history
  5. Remove as_pdb_input

    terwill committed Jun 7, 2024
    Configuration menu
    Copy the full SHA
    851206e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ac333a4 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8160f6b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    fb32447 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    bb644c1 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    d8bc62d View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2024

  1. Configuration menu
    Copy the full SHA
    7f4d4e4 View commit details
    Browse the repository at this point in the history
  2. Add symetric distance method. Simple. Inefficient. But useful if you …

    …want to calculate distance between two sets of atoms and you don't care about labels!
    pafonine committed Jun 9, 2024
    Configuration menu
    Copy the full SHA
    75a5184 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    79f8df7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    309ccea View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2024

  1. pdbtools: use data_manager to output model so it can figure out corre…

    …ct output format. With test. Propagate output_cs parameter.
    olegsobolev committed Jun 13, 2024
    Configuration menu
    Copy the full SHA
    4c99c27 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    870ef04 View commit details
    Browse the repository at this point in the history
  3. Monitor resource usage (cctbx#994)

    * Framework for compile-time polymorphism.
    
    In the exascale_api, allow pixel values to be calculation either on
    large array (all pixels), or with low-memory on just the whitelist
    consisting of shoebox pixels.  This commit only gives the polymorphism
    framework; both implementations are currently identical giving the
    large-array behavior.
    
    * Debug case for non-working test.
    
    The script tests/tst_memory_policy.py fails with a cuda illegal access.
    The intention is to get help from NESAP to get a functional test.
    
    * Minimal changes for working tst_memory_policy.py
    
    Memory savings achieved through code specialization, for the case where
    pixel values are simulated on a small whitelist. Specializations are not
    yet optimal, as there is still a lot of code duplication.
    
    Changes give ~4.5x reduction in memory footprint, but no success yet in
    resizing the array m_accumulate_floatimage.  Attempts so far lead to
    cuda memory allocation error.
    
    * Remove debugging output to conserve stdout size.
    
    * Add first verion of `UsageMonitor` to monitor C/GPU memory/use
    
    * Suppress logging information from loggers other than `usage`
    
    * Explicitely point to `target` when starting threads
    
    * Add logging details, period, null loggers
    
    * Correctly calculate total `UsageStats` across cpu, gpu
    
    * Don't pass `self` as arg to `Thread` (oddly, this is correct)
    
    * Add `UsageStatsHistory`, try to fix empty log
    
    * Add test prints for logging
    
    * All ranks need to call `log_current_usage`
    
    * Why does logging usage stop at some point?
    
    * Correctly measure GPU memory use, only sample rank if `single`
    
    * Add some basic usage stats plotting every 10th iteration
    
    * Allow plotting empty, plot only in main thread
    
    * Correctly calculate max memory
    
    * Add timestamp to print statements to correlate with usage log
    
    * Make `rank/node_usage_stats` a method, avoid unnecessary calls
    
    * Only rank 0 should attempt plotting `usage_stats_histories`
    
    * `gpu_usage_and_memory`: return -1 if no GPU
    
    * `log_current_usage`: No longer print that you're logging
    
    * Don't try to sleep backwards :)
    
    * Move logging to `UsageLogManager`, allow plotting from logs
    
    * Implement inheritance structure that allows for easy extension
    
    * Reorganize, heavily document the code
    
    * Reorganize, heavily document the code 2
    
    * Rename `UnitIntervalFloat` to PerCentFloat`, fix gpu mem. range
    
    * Rename `UsageStats` to `ResourceStats` (and associated)
    
    * Improve type annotations
    
    * Add option to monitor node 0 only
    
    * Add `MonitorWorker` for `cctbx.xfel.merge`
    
    * Improve `ResourceStatsArtist` axes description
    
    * Add `DummyResourceProbe` for CPU & GPU in case no `Probe` works
    
    * Fix typo
    
    * Fix typo 2
    
    * Fix typo 3
    
    * Fix typo 4
    
    * Fix missing microseconds in log
    
    * In `ResourceStatsArtist`, change `tight_layout` to `constrained_layout`
    
    * Use only single `.png` path extension
    
    * Fix `ResourceStatsHistory.get_deltas_array` if empty
    
    * Correctly print milliseconds
    
    * Correctly check for empty array
    
    * Revert `ResourceLogManager` as it's used outside
    
    * Correctly pass phil parameters to `MonitorWorker`
    
    * Correctly pass phil parameters to `MonitorWorker`
    
    * In `get_node_resource_stats` communicate within node only
    
    * Comm in `get_node_resource_stats` fails. Try adding barrier.
    
    * Don't attempt to collect data across ranks, mpi fails
    
    * Allow two loggers to work independently by customizing `logger_name`
    
    * Add options and phil pars to disable writing and disable plotting
    
    * Add options and phil pars to disable writing and disable plotting 2
    
    * Update phil
    
    * Update phil 2
    
    * Add `libtbx/resource_monitor.py` to py2 syntax exceptions
    
    * Remove Nick's changes specific to `memory_policy` branch
    
    * Remove outdated line in `py2_syntax_exceptions.txt`
    
    * Remove python3.5+ syntax from `xfel/merging/application/monitor`
    
    * Add clutter because libtbx requires it
    
    * Update `ResourceLogManager.line_regex`
    
    * Assert all `ResourceStats` contain only `PerCentFloat`s, not `str`
    
    * support for python versions < 3.9
    
    * Increase plot font size from 10 to 16
    
    * Add support for PathLike ResourceMonitor.prefix as suggested by @dermen
    
    * Add grid to make trends more visible as suggested by @dermen
    
    * Set libtbx dispatcher name `libtbx.resource_monitor_plot` for plot_logs
    
    * Set font.size 12 (16 is big), and locally to not affect any other plot
    
    * Move resource monitor's `plot_log` thin wrapper to libtbx/command_line
    
    * Make `lilbtbx.resource_monitor_plot`'s prefix optional
    
    ---------
    
    Co-authored-by: Nicholas K Sauter <nksauter@lbl.gov>
    Co-authored-by: dermen <dermen@lbl.gov>
    3 people authored Jun 13, 2024
    Configuration menu
    Copy the full SHA
    1c39c60 View commit details
    Browse the repository at this point in the history
  4. Bugfix: work correctly when there is longer bond in the model than ma…

    …x_distance_between_connecting_atoms. Enabling tests.
    olegsobolev committed Jun 13, 2024
    Configuration menu
    Copy the full SHA
    3f84e12 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2024

  1. Cleanup

    dcliebschner committed Jun 14, 2024
    Configuration menu
    Copy the full SHA
    01b0860 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2024

  1. Refactor to reuse class API in other code.

    Makes the tdata globally available for use in the new ucinline worker of
    psii_spread.
    nksauter committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    038c5a3 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2024

  1. Configuration menu
    Copy the full SHA
    c0527f9 View commit details
    Browse the repository at this point in the history
  2. Undo reset

    terwill committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    41bef9a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    66dd4ca View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2024

  1. Alow some slack

    pafonine committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    e6a8401 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    96441f8 View commit details
    Browse the repository at this point in the history
  3. typo

    nwmoriarty committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    20d1113 View commit details
    Browse the repository at this point in the history
  4. changes for upper

    nwmoriarty committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    caf0e17 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2024

  1. Catch tuple vs list

    terwill committed Jun 23, 2024
    Configuration menu
    Copy the full SHA
    3901ee2 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2024

  1. Configuration menu
    Copy the full SHA
    5d74467 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    10f9eeb View commit details
    Browse the repository at this point in the history
  3. fix overwrite

    terwill committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    98bc43c View commit details
    Browse the repository at this point in the history
  4. XFEL GUI updates

    - Add filter for datasets in the datasets tab
    - Use medians in the energy tab
    - Bugfix for d_min in the runstats plot
    - Handle UNKWN for ensemble_refinement, which is the state if some jobs haven't finished in a job with multiple submitted job ids
    - More precision for the merging stats plot
    phyy-nx committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    665b30b View commit details
    Browse the repository at this point in the history
  5. Spell out deep_copy of map_manager instead of using deepcopy (deepcop…

    …y(map_data) is very slow relative to map_data.deep_copy())
    terwill committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    842d097 View commit details
    Browse the repository at this point in the history
  6. clean clutter

    terwill committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    1de64c1 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2024

  1. Submit cctbx.xfel jobs using "/bin/bash" instead of "/bin/sh"

    Co-authored-by: Aaron Brewster <asbrewster@lbl.gov>
    Baharis and phyy-nx committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    8381e63 View commit details
    Browse the repository at this point in the history
  2. mid-june update

    nwmoriarty committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    c779886 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2024

  1. Configuration menu
    Copy the full SHA
    3132585 View commit details
    Browse the repository at this point in the history
  2. Not used and not tested code. There are functions like add_crystal_sy…

    …mmetry_if_necessary in the class which should be used instead.
    olegsobolev committed Jun 27, 2024
    Configuration menu
    Copy the full SHA
    9460872 View commit details
    Browse the repository at this point in the history
  3. Unused import

    olegsobolev committed Jun 27, 2024
    Configuration menu
    Copy the full SHA
    42d905a View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2024

  1. Configuration menu
    Copy the full SHA
    c67a526 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a6b867c View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2024

  1. CI: bump macOS for XFEL CI

    bkpoon committed Jun 30, 2024
    Configuration menu
    Copy the full SHA
    56c25ea View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2024

  1. Update CHANGELOG.rst for 2024.6 release

    [skip ci]
    bkpoon committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    67acd80 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2024

  1. CI: stop CentOS 7 builds and move to Rocky Linux 8

    - Set locale and clean up XFEL CI
    - Add make to XFEL CI
    - Fix macOS cache for XFEL CI
    bkpoon committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    1edbdfc View commit details
    Browse the repository at this point in the history
  2. Don't create present_anames until really need them. Surprising time s…

    …avings for models without alt locs.
    olegsobolev committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    3d42afc View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2024

  1. Configuration menu
    Copy the full SHA
    e3f1760 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2024

  1. Fix unsupported map type

    pafonine committed Jul 6, 2024
    Configuration menu
    Copy the full SHA
    3f2b36f View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2024

  1. speedup ncs_search, 40%

    olegsobolev committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    370c297 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a43aa7b View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2024

  1. ncs_search speedup 2.5x

    olegsobolev committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    5d15270 View commit details
    Browse the repository at this point in the history
  2. Correct comment

    olegsobolev committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    e33bbba View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2024

  1. ncs_search speedup 20%: sacrifice memory for performance: having flat…

    … atom selection is faster than constructing it from list of lists
    olegsobolev committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    810451e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2d12ea1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c99d03d View commit details
    Browse the repository at this point in the history
  4. Introduce parameter

    olegsobolev committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    a1886d1 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2024

  1. Configuration menu
    Copy the full SHA
    8a5fe4c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    953f0da View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1e5cd29 View commit details
    Browse the repository at this point in the history
  4. Cleanup

    olegsobolev committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    614642a View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2024

  1. Allow p.pdb_interpretation.allow_polymer_cross_special_position in ho…

    …lton_geometry_validation
    terwill committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    5d40b29 View commit details
    Browse the repository at this point in the history
  2. clean clutter

    terwill committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    05cd2c4 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2024

  1. Configuration menu
    Copy the full SHA
    40b3883 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9e4c2b4 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2024

  1. Configuration menu
    Copy the full SHA
    945df1a View commit details
    Browse the repository at this point in the history
  2. debug code for pH

    nwmoriarty committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    f46b6f9 View commit details
    Browse the repository at this point in the history
  3. more options for DDR

    nwmoriarty committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    76e88fd View commit details
    Browse the repository at this point in the history
  4. placeholder for QMF

    nwmoriarty committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    243c461 View commit details
    Browse the repository at this point in the history
  5. read files with ?

    nwmoriarty committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    c8aef62 View commit details
    Browse the repository at this point in the history
  6. new energy unit

    nwmoriarty committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    5806fd8 View commit details
    Browse the repository at this point in the history
  7. read_charge...

    nwmoriarty committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    4eabd71 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2024

  1. Configuration menu
    Copy the full SHA
    3a77803 View commit details
    Browse the repository at this point in the history
  2. alert about solvent model

    nwmoriarty committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    e75a3e1 View commit details
    Browse the repository at this point in the history
  3. update

    nwmoriarty committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    dd7ca67 View commit details
    Browse the repository at this point in the history
  4. small changes

    nwmoriarty committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    4129e34 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    38c7950 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2024

  1. Configuration menu
    Copy the full SHA
    5d2bf34 View commit details
    Browse the repository at this point in the history
  2. pdb interpretation with NCS should now work if ON by default for all …

    …tests. Not enabling just yet.
    olegsobolev committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    813aa56 View commit details
    Browse the repository at this point in the history
  3. CI: use libcxx=17 for XFEL CI

    bkpoon committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    78b918a View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2024

  1. Configuration menu
    Copy the full SHA
    b7650a8 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2024

  1. iotbx: fix typo

    bkpoon committed Jul 29, 2024
    Configuration menu
    Copy the full SHA
    555aee4 View commit details
    Browse the repository at this point in the history
  2. Revert "iotbx: fix typo"

    This reverts commit 555aee4.
    bkpoon committed Jul 29, 2024
    Configuration menu
    Copy the full SHA
    7143c7d View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2024

  1. for bulk QMF of a model

    nwmoriarty committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    75df09c View commit details
    Browse the repository at this point in the history
  2. Factor out getting crystal_symmetry in model.py and allow call with j…

    …ust pdb_hierarchy; use hierarchy not pdb_input in validation
    terwill committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    c6dfcd4 View commit details
    Browse the repository at this point in the history
  3. update

    nwmoriarty committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    0adfafc View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2024

  1. Configuration menu
    Copy the full SHA
    86b14eb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a59dab9 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2024

  1. Configuration menu
    Copy the full SHA
    8d1a1a7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    175e8ec View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    47cb6c2 View commit details
    Browse the repository at this point in the history
  4. Catch None

    terwill committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    9eed7fa View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5682353 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2024

  1. Replace dict with Counter in the postrefine worker (cctbx#1002)

    * Add `postrefinement.intensity_extrema_iqr_distance_threshold` phil par
    
    * experiments_rejected_by_reason: dict -> Counter saves 15 lines of code
    
    * correction: dict -> Counter saves 18 lines of code, not 15
    
    * Add preliminary version of `IntensityExtrema` handler: will work @ end
    
    * Sanitize expts and refls AFTER initial exception catching
    
    * Fix typo in `mpi_helper.count`
    
    * Change import of `intensity_sanitizer` from relative to absolute
    
    * Fix mistake in phil helpstring
    
    * Default `postrefinement.intensity_extrema_iqr_dist_threshold`:100->1000
    
    * Add clutter to `intensity_sanitizer.py`
    
    * Implement `libtbx.mpi4py.mpiEmulator.allgather` method
    
    * Remove all functional changes to the postrefinement worker
    Baharis authored Aug 2, 2024
    Configuration menu
    Copy the full SHA
    532c1f4 View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.rst for 2024.7 release

    [skip ci]
    bkpoon committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    8c701e5 View commit details
    Browse the repository at this point in the history
  3. "Truncate" XFEL expts/refls based on aggregated statistics (cctbx#1003)

    * Make postsanitize/postrefinement  sanitization standalone CCTBX worker
    
    * Removed unused `Experiment` import
    
    * Add comments to aid future development
    
    * Add `truncate_phil` to the `cctbx.xfel.merge` `master_phil`
    
    * Convert arguments of `uniques` into lists before summing
    
    * `TruncationReasons.max_reason_len` should be `int`, not `str`
    
    * Mention `TruncationReasons.intensity_extremum_iqr_dist` when truncating
    
    * Change formatting so that it is clear that expt/refls are removed
    
    * When writing output, write `TruncationReasons` value
    
    * Make expts, refls plural in `TruncationReasons.report_line`
    
    * Rename `truncate` worker into `filter_global`, use `global_` phil scope
    
    * Improve main log message style
    
    * Rename `filter_global` worker's phil scope to `filter_global`
    Baharis authored Aug 2, 2024
    Configuration menu
    Copy the full SHA
    860527c View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2024

  1. Revert "CI: use libcxx=17 for XFEL CI"

    This reverts commit 78b918a.
    
    [skip ci]
    bkpoon committed Aug 4, 2024
    Configuration menu
    Copy the full SHA
    062c591 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2024

  1. Configuration menu
    Copy the full SHA
    f4c4338 View commit details
    Browse the repository at this point in the history
  2. CI: remove deleted entries

    [skip ci]
    bkpoon committed Aug 6, 2024
    Configuration menu
    Copy the full SHA
    77b5ab7 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Configuration menu
    Copy the full SHA
    09bf1c9 View commit details
    Browse the repository at this point in the history
  2. Changes to account for contribution from fixed model.

    This is a temporary version, in which the fixed model contribution
    is subtracted from the input map. This will be changed when phasertng
    can account itself for the contribution of the fixed model.
    randyjread committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    20d723a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7319c63 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6d23008 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c9f8698 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2024

  1. Configuration menu
    Copy the full SHA
    9158e1d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1b12740 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e8a2cec View commit details
    Browse the repository at this point in the history
  4. update

    nwmoriarty committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    6667130 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    318c5e0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    982cf8b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f600344 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2024

  1. Configuration menu
    Copy the full SHA
    3d6e014 View commit details
    Browse the repository at this point in the history
  2. QM timing info

    nwmoriarty committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    a3f5f3b View commit details
    Browse the repository at this point in the history
  3. documentation

    nwmoriarty committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    54e44a7 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2024

  1. Configuration menu
    Copy the full SHA
    db69383 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2024

  1. dumb error

    nwmoriarty committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    04736bb View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2024

  1. pdb_int speedup 10%. Create atom quotes only when need them to raise …

    …Sorry. Faster way to check if atoms are there.
    olegsobolev committed Aug 13, 2024
    Configuration menu
    Copy the full SHA
    d723c64 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    50c7b72 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    38960db View commit details
    Browse the repository at this point in the history
  4. XFEL GUI: MPI safe ensemble refinement (cctbx#840)

    * Add optional argument lists to xfel programs
    
    Specifically recompute_mosaicity and merge
    
    * New command cctbx.xfel.enesemble_refine_pipeline
    
    This is an MPI safe script that runs four programs in sequence
    - dials.combine_experiments
    - dials.refine
    - cctbx.xfel.recompute_mosaicity
    - cctbx.xfel.mpi_integrate
    
    For the first 3, only mpi rank 0 is used. Then the full MPI job can run for integration.  This ensures the first 3 programs are only ran single process.
    
    * Rewrite striping to use cctbx.xfel.ensemble_refinement_pipeline
    
    Also, it's time to disable frame_extractor
    
    * Fix typos and splitting strings with whitespace
    
    * Add GUI widget to modify number of nodes for TDER (cctbx#843)
    
    * Add `params.mp.nnodes_tder` and `nnodes_tder` widget
    
    * Fix typo in nnodes_tder SpinCtrl in settings
    
    * Decrease width of all nnodes widgets
    
    * Add tooltip for TDER abbreviation itself
    
    * Try to `run()` `dials.command_line.combine_experiments` (new interface)
    
    * Try to `run()` `dials.command_line.combine_experiments` (new interface)
    
    * Try to `run()` `dials.command_line.combine_experiments`, unify syntax
    
    ---------
    
    Co-authored-by: Daniel Tchon <dantch@onet.eu>
    phyy-nx and Baharis authored Aug 13, 2024
    Configuration menu
    Copy the full SHA
    7e9652e View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2024

  1. Configuration menu
    Copy the full SHA
    e3b6974 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    38f230e View commit details
    Browse the repository at this point in the history
  3. pdb_int speedup 4%: Don't use get_sorted for angles too, too slow for…

    … the task. Also now will display actual absolute deviations, not angle values.
    olegsobolev committed Aug 14, 2024
    Configuration menu
    Copy the full SHA
    46a1728 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    57cd1f9 View commit details
    Browse the repository at this point in the history
  5. bootstrap: switch more repositories to git

    - opt_resources
    - Plex
    - PyQuante
    - elbow
    - ksdssp
    - pulchra
    - reel
    - muscle
    - buildbot
    - xfel_regression
    
    [skip ci]
    bkpoon committed Aug 14, 2024
    Configuration menu
    Copy the full SHA
    1a7d794 View commit details
    Browse the repository at this point in the history
  6. reducing AA flip output

    nwmoriarty committed Aug 14, 2024
    Configuration menu
    Copy the full SHA
    23b871d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0e5b50d View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2024

  1. Configuration menu
    Copy the full SHA
    ddbc1f9 View commit details
    Browse the repository at this point in the history
  2. clean clutter and more

    nwmoriarty committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    d2045ce View commit details
    Browse the repository at this point in the history
  3. pdb_int speedup, this function 50x. Preparing data outside the loop, …

    …then use it. Fixing typo.
    olegsobolev committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    2fe26fc View commit details
    Browse the repository at this point in the history
  4. Clean unused

    olegsobolev committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    312c37c View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2024

  1. Configuration menu
    Copy the full SHA
    f8fc999 View commit details
    Browse the repository at this point in the history
  2. possible bugfix

    olegsobolev committed Aug 16, 2024
    Configuration menu
    Copy the full SHA
    1fdc8a5 View commit details
    Browse the repository at this point in the history
  3. bootstrap: move chem_data to git

    [skip ci]
    bkpoon committed Aug 16, 2024
    Configuration menu
    Copy the full SHA
    18ee996 View commit details
    Browse the repository at this point in the history
  4. New cctbx.xfel.merge worker for computing and filtering on ΔCC½ (cctb…

    …x#1005)
    
    This is a means of filtering out lattices that degrade the overall CC½. Uses the σ-τ method from Assmann 2016 to avoid splitting the data into odd/even datasets. Enable by adding the deltaccint worker after the group worker.
    
    Includes parameter iqr_ratio = 10. If the ΔCC½ filter is enabled, first compute CC½ when removing every image one at a time, then compute the IQR of these CC½s. Remove all lattices whose contribution degrades CC½ by more than IQR * iqr_ratio above the median. You can discover a good IQR by running the program once, examining the log file where possible values are listed, and running it again with the best value.
    
    Co-authored-by: Daniel Tchon <dantch@onet.eu>
    phyy-nx and Baharis authored Aug 16, 2024
    Configuration menu
    Copy the full SHA
    d4f9ef6 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2024

  1. Configuration menu
    Copy the full SHA
    a32311d View commit details
    Browse the repository at this point in the history
  2. Reduce2: remove an unnecessary model.select() call. This improves run…

    …time, especially for large models.
    dcliebschner committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    d317725 View commit details
    Browse the repository at this point in the history
  3. CI: fix chem_data location

    bkpoon committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    a5ae3c4 View commit details
    Browse the repository at this point in the history
  4. bootstrap: use git-lfs for chem_data

    [skip ci]
    bkpoon committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    a8de1d4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4602610 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2024

  1. Configuration menu
    Copy the full SHA
    daea0c4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9a201d1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dc07948 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2024

  1. Configuration menu
    Copy the full SHA
    17f1a72 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2024

  1. Configuration menu
    Copy the full SHA
    f5996c1 View commit details
    Browse the repository at this point in the history
  2. New cctbx.xfel.merge parameter, select.significance_filter.d_min

    Removes the entire lattice if the resolution is not at least this d_min. Similar to the cxi.merge parameter lattice_rejection.d_min.
    phyy-nx committed Aug 21, 2024
    Configuration menu
    Copy the full SHA
    9c450e2 View commit details
    Browse the repository at this point in the history
  3. Remove unused call.

    olegsobolev committed Aug 21, 2024
    Configuration menu
    Copy the full SHA
    7d409c6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e20fc78 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    558c79f View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2024

  1. Put back option to define sphere center with placed model.

    Tidy up argparse input and logic of options.
    randyjread committed Aug 22, 2024
    Configuration menu
    Copy the full SHA
    98938c9 View commit details
    Browse the repository at this point in the history
  2. bootstrap: add aimnet2calc repo for qrefine

    [skip ci]
    bkpoon committed Aug 22, 2024
    Configuration menu
    Copy the full SHA
    b308ac4 View commit details
    Browse the repository at this point in the history
  3. Reduce2: prevent Sorry.

    dcliebschner committed Aug 22, 2024
    Configuration menu
    Copy the full SHA
    996478a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bfaa7c1 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2024

  1. Performance improvements in deltacc

    Co-authored-by: Aaron Brewster <asbrewster@lbl.gov>
    dwpaley and phyy-nx committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    e8e709a View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2024

  1. Bugfix for deltaccint

    phyy-nx committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    b196093 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c3422c8 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2024

  1. Configuration menu
    Copy the full SHA
    85468c4 View commit details
    Browse the repository at this point in the history
  2. Ribbons (cctbx#1007)

    * Fixing the nucleic-acid residue code in Reduce to work with DNA as well as RNA, and to handle the broader range of potential names. Speeding up the protein and NA determination code by making the lists outside of the functions.
    
    * Adding scaffolding and initial functions for ribbon-generation code.
    
    * Documentation update
    
    * Adding function to produce the guidepoints for protein ribbons.
    
    * Continuing to implement ribbon generation, porting from the Java code.
    
    * Cleaning up command-line argument style and adding a choice for coloring for ribbons
    
    * Continuing to add ribbon support
    
    * Continuing to implement ribbon printing code.
    
    * Removing spurious Phil argument. Clarifying name of variable
    
    * Adding ability to set coil width
    
    * Updating the code dealing with secondary structure types to include more information that is needed in the ribbon-printing code.
    
    * Continuing to implement fancy-ribbon printing
    
    * Simplifying and correcting modulo calculation on chain colors.
    
    * Re-using existing method to determine chain colors based on index
    
    * Fixing indentation and initialization errors
    
    * Continuing to implement and debug ribbon code
    
    * Fixing rainbow color map to do once per chain. Fixing line thickness on ribbon edges.
    
    * Fixing element creation to get helix construction working better.
    
    * Integer division
    
    * Adding the triangle tip for the ribbon to the output
    
    * Removigtnn spurious parentheses
    
    * Adjusting the spline code to start and end at the correct control points
    
    * Added coil sections of ribbons and starting on sheets, including calculating next/previous/duplicate information required for this processing.
    
    * First version of ribbon code that generates helices, sheets, and coils.
    
    * Replacing SciPy NURBS with implementation of NRUBS ported from original Java code.
    
    * Replacing duplicate residue names with a single quote to reduce ribbon file sizes
    
    * Removing extra spaces at end of line.
    
    * Comment fix
    
    * Fixing multi-model behavior for ribbons. Casting parameter into an int so that a function can handle strings that hold integers as well.
    
    * Adding the ability to select atoms.  Fixing the label on the models when multiple models are in a file.
    
    * Selecting only alternate a by default. Adding animation for multiple-model files we make ribbons for
    
    * Fixing print statement to be compatible with python 2
    
    * Cleaning up clutter
    russell-taylor authored Aug 27, 2024
    Configuration menu
    Copy the full SHA
    107a933 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2024

  1. Configuration menu
    Copy the full SHA
    c4a8c65 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f40439b View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2024

  1. Switch deltaccint to using unbinned data

    (ie overall delta cc1/2 instead of average of the delta cc1/2 bins)
    phyy-nx committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    9323335 View commit details
    Browse the repository at this point in the history
  2. Tidy

    phyy-nx committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    fdb5a2e View commit details
    Browse the repository at this point in the history
  3. CI: continue if SSH key already added

    [skip ci]
    bkpoon committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    6daf607 View commit details
    Browse the repository at this point in the history
  4. Make generating experiment identifiers more constant

    Instead of using the full path as part of the input to the hash function, use the base name.  This means XFEL CI should pass when checking out xfel_regression on different computers in cases when the identifiers are missing and need to be generated.
    phyy-nx committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    136b35b View commit details
    Browse the repository at this point in the history
  5. Add verbose option for deltaccint

    [skip ci]
    phyy-nx committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    5f4a501 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    db0e425 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9ca4b76 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2024

  1. Configuration menu
    Copy the full SHA
    256502b View commit details
    Browse the repository at this point in the history
  2. CI: add geostd to data cache download

    [skip ci]
    bkpoon committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    c2df187 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    63e3898 View commit details
    Browse the repository at this point in the history
  4. update from CC

    nwmoriarty committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    2ac3b12 View commit details
    Browse the repository at this point in the history
  5. mostly updates to test

    nwmoriarty committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    4fa0599 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2024

  1. Configuration menu
    Copy the full SHA
    983b8ae View commit details
    Browse the repository at this point in the history
  2. CI: clean up ssh options

    [skip ci]
    bkpoon committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    429625e View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2024

  1. Update CHANGELOG.rst for 2024.8 release

    [skip ci]
    bkpoon committed Sep 1, 2024
    Configuration menu
    Copy the full SHA
    8149b85 View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2024

  1. Fix missing chain ID

    terwill committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    b6e57a5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    df9ce43 View commit details
    Browse the repository at this point in the history
  3. Ribbons2 (cctbx#1009)

    * Adding a third, 'solid', color scheme for ribbons that makes all chains a solid color, even the first one.
    
    * By default, treats nucleic acids as helices rather than coils.
    
    * Bumped minor version number on ribbons
    russell-taylor authored Sep 3, 2024
    Configuration menu
    Copy the full SHA
    6bf0449 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2024

  1. Configuration menu
    Copy the full SHA
    b4d6520 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2194c33 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    27136c5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    68997a2 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2024

  1. Clean clutter

    Baharis committed Sep 5, 2024
    Configuration menu
    Copy the full SHA
    e9bce95 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2024

  1. Make mpi_helper's method non-rooted if root=None (cctbx#1010)

    * Auto-select `mpi_helper`'s collectives using new context manager
    
    * Remove unused `from dials.array_family import flex` statement
    
    * Change misleading (?) name in `gather_variable_length_numpy_arrays`
    
    * Simplify code following changes in `beam_statistics.py`
    
    * Simplify code following changes in `error_modifier_mm24.py`
    
    * Simplify code following changes in `unit_cell_statistics.py`
    
    * Bugfix multiprocessing reporting in `global_filter.py`
    
    * Extend `adaptive_collective` `contextmanager`'s docstring
    
    * Revert "Simplify code following changes in `error_modifier_mm24.py`"
    
    This reverts commit b4edf43.
    
    * Bugfix: non-rooted collective should be never passed `root` kwarg
    
    * define `mpiCommEmulator.Allgatherv`
    
    * Remove walrus operator for python2.7 compliance
    Baharis authored Sep 6, 2024
    Configuration menu
    Copy the full SHA
    d8e5e81 View commit details
    Browse the repository at this point in the history
  2. Reduce2: break down timing even more. Only process if cif restraints …

    …is provided in input. No need otherwise.
    dcliebschner committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    3f9c877 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2024

  1. Configuration menu
    Copy the full SHA
    4444ace View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2024

  1. Configuration menu
    Copy the full SHA
    75b6f41 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2024

  1. Configuration menu
    Copy the full SHA
    6927c85 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2024

  1. Configuration menu
    Copy the full SHA
    3360b22 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ba66eae View commit details
    Browse the repository at this point in the history
  3. CI: start Python 3.13 syntax check

    [skip ci]
    bkpoon committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    412052b View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2024

  1. Mm24 correlation bug fix (cctbx#1014)

    * Updates to the MM24 algorithm to prevent sadd optimizing to zero
    
    * Additional matplotlib import
    dwmoreau authored Sep 12, 2024
    Configuration menu
    Copy the full SHA
    865e8e3 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2024

  1. Fix bug in relative weight of fixed model contribution.

    Allow fixed model to be used without specifying total composition.
    Tidy up code so it's not relying as much on automatic naming of different elements of mmm object.
    randyjread committed Sep 16, 2024
    Configuration menu
    Copy the full SHA
    bd69e48 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2024

  1. Configuration menu
    Copy the full SHA
    5e4a68b View commit details
    Browse the repository at this point in the history
  2. Bug fixes with a test

    pafonine committed Sep 17, 2024
    Configuration menu
    Copy the full SHA
    083816b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0c7cd4b View commit details
    Browse the repository at this point in the history
  4. Doc for the new function.

    olegsobolev committed Sep 17, 2024
    Configuration menu
    Copy the full SHA
    ac046ce View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2024

  1. Use correct version of ASE

    pafonine committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    394fee6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    45449dd View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2024

  1. Cleanup

    dcliebschner committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    19709d5 View commit details
    Browse the repository at this point in the history
  2. Fix typo

    dcliebschner committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    2b5d162 View commit details
    Browse the repository at this point in the history
  3. still a mess

    nwmoriarty committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    8b6eb0c View commit details
    Browse the repository at this point in the history
  4. test for ARG geom

    nwmoriarty committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    ae63ba0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b49c2dc View commit details
    Browse the repository at this point in the history
  6. update

    nwmoriarty committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    f65da26 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    527f3e8 View commit details
    Browse the repository at this point in the history
  8. update

    nwmoriarty committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    7e66c36 View commit details
    Browse the repository at this point in the history
  9. update

    nwmoriarty committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    89ab9c9 View commit details
    Browse the repository at this point in the history
  10. update

    nwmoriarty committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    f4795f9 View commit details
    Browse the repository at this point in the history
  11. update

    nwmoriarty committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    f798e6b View commit details
    Browse the repository at this point in the history
  12. update

    nwmoriarty committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    b003e52 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    10caab4 View commit details
    Browse the repository at this point in the history
  14. Docstrings

    dcliebschner committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    85da749 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    3fdbcf6 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2024

  1. Configuration menu
    Copy the full SHA
    ed70df6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    41294a6 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2024

  1. update

    nwmoriarty committed Sep 23, 2024
    Configuration menu
    Copy the full SHA
    0bb7bfe View commit details
    Browse the repository at this point in the history
  2. update

    nwmoriarty committed Sep 23, 2024
    Configuration menu
    Copy the full SHA
    12911b3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d82c251 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2024

  1. fixed link_residues test

    nwmoriarty committed Sep 24, 2024
    Configuration menu
    Copy the full SHA
    98fe1eb View commit details
    Browse the repository at this point in the history
  2. cootbx: make file finding more portable

    - Works for both development builds and installer builds
    
    [skip ci]
    bkpoon committed Sep 24, 2024
    Configuration menu
    Copy the full SHA
    6a6e55e View commit details
    Browse the repository at this point in the history
  3. bootstrap: add AlphaFold repository

    [skip ci]
    bkpoon committed Sep 24, 2024
    Configuration menu
    Copy the full SHA
    6db8021 View commit details
    Browse the repository at this point in the history
  4. conda: clean up devenv file fot cctbx dependencies

    [skip ci]
    bkpoon committed Sep 24, 2024
    Configuration menu
    Copy the full SHA
    d7d0138 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2024

  1. CI: switch mamba to conda

    bkpoon committed Sep 25, 2024
    Configuration menu
    Copy the full SHA
    ee847b8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    079f2da View commit details
    Browse the repository at this point in the history
  3. libtbx: remove most distutils imports

    - Fixes cctbx#1018 for more general Python 3.12 support
    - Three remaining distutils imports remain, but in deprecated code
    bkpoon committed Sep 25, 2024
    Configuration menu
    Copy the full SHA
    b0d9ec8 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2024

  1. Configuration menu
    Copy the full SHA
    93560d1 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2024

  1. CI: update mirror in syntax check

    [skip ci]
    bkpoon committed Sep 27, 2024
    Configuration menu
    Copy the full SHA
    1be1524 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f269d4f View commit details
    Browse the repository at this point in the history
  3. CI: add checkout step

    [skip ci]
    bkpoon committed Sep 27, 2024
    Configuration menu
    Copy the full SHA
    f76dade View commit details
    Browse the repository at this point in the history
  4. conda: add qt-webengine to devenv file

    [skip ci]
    bkpoon committed Sep 27, 2024
    Configuration menu
    Copy the full SHA
    890188d View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2024

  1. Configuration menu
    Copy the full SHA
    5ca82bb View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2024

  1. Update CHANGELOG.rst for 2024.9 release

    [skip ci]
    bkpoon committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    c0ef0d7 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2024

  1. Configuration menu
    Copy the full SHA
    51c8a60 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e93cb83 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c21aa36 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    49f0630 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    dfa034d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e7c2377 View commit details
    Browse the repository at this point in the history