svn+ssh://bugman@.../svn/relax/1.3
................
r8681 | bugman | 2009-01-27 18:35:10 +0100 (Tue, 27 Jan 2009) | 6 lines
Removed the dependence of the relax_errors and relax_warnings modules on relax.
This fixes some rare circular import failures with the --debug flag and makes the modules much
cleaner and more independent.
................
r8683 | bugman | 2009-01-27 18:48:32 +0100 (Tue, 27 Jan 2009) | 6 lines
Improvements to the relax_errors module.
The module function save_state() can now function if this module is used by something other than
relax. The saved state is also BZip compressed if the bz2 module exists.
................
r8714 | bugman | 2009-02-02 10:58:41 +0100 (Mon, 02 Feb 2009) | 3 lines
Added some printouts stating which file the relax saved state is placed in when in Debug mode.
................
r8717 | bugman | 2009-02-02 11:30:54 +0100 (Mon, 02 Feb 2009) | 11 lines
Fixed an annoying bug in the RelaxError debugging mode.
The problem here is that the relax state was being saved in the __init__() methods if in debug mode.
The result was that in try statements which catch and allow for RelaxErrors, the relax state was
being saved even though the error message and exception was suppressed. The fix was to shift the
state saving code into the __str__() method.
A side effect of this change is a simplification of all the RelaxError classes as the debug code is
no longer duplicated in each class.
................
r8723 | bugman | 2009-02-03 18:05:58 +0100 (Tue, 03 Feb 2009) | 6 lines
Wrote 2 new system tests for the new structural data design.
In test_read_pdb_internal6(), 2 different structures are loaded as 2 molecules. In
test_read_pdb_internal7(), 2 identical structures are loaded as 2 molecules.
................
r8725 | bugman | 2009-02-04 10:33:25 +0100 (Wed, 04 Feb 2009) | 3 lines
Duplicated 5 systems tests of the internal PDB reader for the Scientific python PDB reader.
................
r8726 | bugman | 2009-02-04 10:37:40 +0100 (Wed, 04 Feb 2009) | 5 lines
Bug fix for the load_pdb() method.
When set_model_num is None, this is now handled properly.
................
r8727 | bugman | 2009-02-04 10:51:40 +0100 (Wed, 04 Feb 2009) | 6 lines
Fixes for the test_read_pdb_mol_2_model_scientific() system test.
The Scientific python PDB reader somehow decided to split the single structures in
'lactose_MCMM4_S1_*.pdb' into 2.
................
r8728 | bugman | 2009-02-04 15:55:49 +0100 (Wed, 04 Feb 2009) | 5 lines
Fixes for the load_pdb() method.
Previously loaded structures were not being taken into account.
................
r8729 | bugman | 2009-02-04 16:16:25 +0100 (Wed, 04 Feb 2009) | 5 lines
More fixes for load_pdb().
Collapsing 2 models into 1 was failing.
................
r8730 | bugman | 2009-02-04 17:22:01 +0100 (Wed, 04 Feb 2009) | 5 lines
Another fix for the load_pdb() method.
The mol_offset value should be calculated at all times!
................
r8731 | bugman | 2009-02-04 17:22:38 +0100 (Wed, 04 Feb 2009) | 3 lines
Added error checking to load_pdb() for when the number of molecules exceeds the set_mol_name list.
................
r8732 | bugman | 2009-02-04 17:24:47 +0100 (Wed, 04 Feb 2009) | 3 lines
The read_mol arg now does something in load_pdb()!!!
................
r8734 | bugman | 2009-02-04 17:32:36 +0100 (Wed, 04 Feb 2009) | 6 lines
Fix for the test_read_pdb_complex_scientific() system test.
Retarded Scientific python splitting a perfectly good molecule into 2 when it can't recognise a
residue type!
................
r8735 | bugman | 2009-02-05 10:00:21 +0100 (Thu, 05 Feb 2009) | 6 lines
Modified test_read_pdb_internal1() to catch a molecule name identification bug.
The test_read_pdb_scientific1() was similarly modified, but there is no bug in the Scientific python
code.
................
r8736 | bugman | 2009-02-05 10:18:17 +0100 (Thu, 05 Feb 2009) | 5 lines
Bug fix for the atom_loop() method.
The molecule name was not being checked!
................
r8737 | bugman | 2009-02-05 10:22:02 +0100 (Thu, 05 Feb 2009) | 3 lines
Added a check for the molecule name.
................
r8738 | bugman | 2009-02-05 10:22:35 +0100 (Thu, 05 Feb 2009) | 3 lines
Modified a print out to make it clearer.
................
r8739 | bugman | 2009-02-05 11:30:37 +0100 (Thu, 05 Feb 2009) | 3 lines
Modified the get_pipe() function to check if a data pipe exists.
................
r8740 | bugman | 2009-02-05 11:43:43 +0100 (Thu, 05 Feb 2009) | 3 lines
Modified 2 system tests for the loading of N-Ca vectors.
................
r8741 | bugman | 2009-02-05 14:41:36 +0100 (Thu, 05 Feb 2009) | 22 lines
Massive speed up of the bond_vectors() method.
The algorithm used was very, very poorly designed. Now when setting the profile flag to 1 gives the
following. Before in one test:
11168736 function calls (10986641 primitive calls) in 76.750 CPU seconds
ncalls tottime percall cumtime percall filename:lineno(function)
758954 12.160 0.000 51.060 0.000 /home/edau/relax/relax-1.3/generic_fns/relax_re.py:31(search)
141 0.890 0.006 67.620 0.480 /home/edau/relax/relax-1.3/generic_fns/structure/internal.py:444(bond_vectors)
All other function call info lines have been removed. After the changes:
2586419 function calls (2579305 primitive calls) in 21.370 CPU seconds
ncalls tottime percall cumtime percall filename:lineno(function)
62803 1.180 0.000 5.020 0.000 /home/edau/relax/relax-1.3/generic_fns/relax_re.py:31(search)
141 0.060 0.000 12.020 0.085 /home/edau/relax/relax-1.3/generic_fns/structure/internal.py:444(bond_vectors)
The difference is that the selection object is no longer used, as it is completely unnecessary.
................
r8742 | bugman | 2009-02-05 14:42:51 +0100 (Thu, 05 Feb 2009) | 3 lines
Modified the base API bond_vectors() method.
................
r8743 | bugman | 2009-02-05 14:46:28 +0100 (Thu, 05 Feb 2009) | 3 lines
Added the atoms 'NZ' and 'OH' as nitrogens and oxygens of amino acids respectively.
................
r8744 | bugman | 2009-02-05 14:54:50 +0100 (Thu, 05 Feb 2009) | 8 lines
Fixes for the bond_vectors() method.
The atom_id string is now generated as it is no longer passed in. This is a temporary fix and this
function is very inefficient, just as the internal object bond_vectors() method was (which was fixed
in r8741).
................
r8745 | bugman | 2009-02-05 15:00:36 +0100 (Thu, 05 Feb 2009) | 5 lines
Fix for the test_read_pdb_scientific1() system test.
The current data pipe was not aliased.
................
r8746 | bugman | 2009-02-05 15:03:40 +0100 (Thu, 05 Feb 2009) | 3 lines
Removed some debugging print statements.
................
r8748 | bugman | 2009-02-05 18:40:49 +0100 (Thu, 05 Feb 2009) | 3 lines
The __linear_constraints() method now handles the N-state models without probabilities.
................
r8749 | bugman | 2009-02-05 18:48:59 +0100 (Thu, 05 Feb 2009) | 5 lines
Fix for the __linear_constraints() method.
The last probability N is not in the scaling matrix! Therefore don't scale.
................
r8750 | bugman | 2009-02-06 11:57:46 +0100 (Fri, 06 Feb 2009) | 6 lines
Added a PDB file containing the N, H, and calcium atoms of Bax's 1J7P structure.
This will be used in the creation and testing of optimisation of alignment tensors from RDCs and
PCSs.
................
r8751 | bugman | 2009-02-06 13:32:41 +0100 (Fri, 06 Feb 2009) | 3 lines
Created a directory for CaM RDC and PCS test data.
................
r8752 | bugman | 2009-02-06 17:34:03 +0100 (Fri, 06 Feb 2009) | 5 lines
Created a script to generate RDC and PCS data for a synthetic alignment tensor.
PCS data still needs to be generated!
................
r8753 | bugman | 2009-02-06 17:35:10 +0100 (Fri, 06 Feb 2009) | 3 lines
Generated and added the synthetic RDC data.
................
r8754 | bugman | 2009-02-06 18:16:34 +0100 (Fri, 06 Feb 2009) | 3 lines
A few modifications for the PCS.
................
r8755 | bugman | 2009-02-09 11:14:15 +0100 (Mon, 09 Feb 2009) | 3 lines
The PCS constant is now being calculated.
................
r8756 | bugman | 2009-02-09 11:20:01 +0100 (Mon, 09 Feb 2009) | 3 lines
The PCS is now calculated for each spin.
................
r8757 | bugman | 2009-02-09 11:30:41 +0100 (Mon, 09 Feb 2009) | 3 lines
Fixes for the PCS calculation.
................
r8758 | bugman | 2009-02-09 11:35:20 +0100 (Mon, 09 Feb 2009) | 3 lines
Added the synthetic PCS values (note these are currently incorrect).
................
r8759 | bugman | 2009-02-09 14:24:51 +0100 (Mon, 09 Feb 2009) | 3 lines
Fixes for the calculation of the PCS.
................
r8760 | bugman | 2009-02-09 15:21:49 +0100 (Mon, 09 Feb 2009) | 3 lines
Decreased the alignment by a factor of 5.
................
r8761 | bugman | 2009-02-09 16:05:12 +0100 (Mon, 09 Feb 2009) | 7 lines
Reverted r8760, as the tensor was originally roughly correct in size.
The command used was:
svn merge -r8760:8759 .
................
r8762 | bugman | 2009-02-09 16:07:30 +0100 (Mon, 09 Feb 2009) | 3 lines
Shifted all print statements to the end.
................
r8763 | bugman | 2009-02-10 11:09:02 +0100 (Tue, 10 Feb 2009) | 3 lines
Duplicated generate_data.py to create a script for generating a list of residues bleached by PRE.
................
r8764 | bugman | 2009-02-10 11:31:47 +0100 (Tue, 10 Feb 2009) | 3 lines
Modified the PRE bleaching script to actually do what it's supposed to do.
................
r8765 | bugman | 2009-02-10 13:51:40 +0100 (Tue, 10 Feb 2009) | 3 lines
Changed the PRE cut-off to 15 Angstrom.
................
r8766 | bugman | 2009-02-10 13:52:10 +0100 (Tue, 10 Feb 2009) | 3 lines
Added the list of PRE broadened residues.
................
r8767 | bugman | 2009-02-10 14:30:18 +0100 (Tue, 10 Feb 2009) | 3 lines
Modified the script to output all spin info into 'unresolved'.
................
r8768 | bugman | 2009-02-10 14:33:11 +0100 (Tue, 10 Feb 2009) | 3 lines
The spins from 'unresolved' are now removed from the RDC and PCS lists.
................
r8769 | bugman | 2009-02-10 14:34:40 +0100 (Tue, 10 Feb 2009) | 3 lines
Decreased the synthetic alignment by half to bring the max PCS into the 3 ppm range.
................
r8770 | bugman | 2009-02-10 17:27:04 +0100 (Tue, 10 Feb 2009) | 7 lines
Modified the full_analysis.py script to name spins if the sequence data contains no spin name info.
This is in response to the post by Pierre-Yves Savard <Pierre-Yves dot Savard att bcm dot ulaval dot
ca> at https://mail.gna.org/public/relax-users/2009-02/msg00001.html (Message-id:
<4991A4A6.5070309@...>).
................
r8771 | bugman | 2009-02-11 14:14:59 +0100 (Wed, 11 Feb 2009) | 3 lines
Added a script for testing out the use of RDCs and PCSs to find the alignment tensor.
................
r8772 | bugman | 2009-02-11 14:52:59 +0100 (Wed, 11 Feb 2009) | 3 lines
Activated the RDC and PCS tensor fitting system test.
................
r8773 | bugman | 2009-02-11 15:18:54 +0100 (Wed, 11 Feb 2009) | 3 lines
Added a print outs for the reading of RDCs and PCSs.
................
r8774 | bugman | 2009-02-11 15:21:24 +0100 (Wed, 11 Feb 2009) | 3 lines
Modified the data reading print outs.
................
r8775 | bugman | 2009-02-11 15:26:25 +0100 (Wed, 11 Feb 2009) | 3 lines
The file data is now always checked.
................
r8776 | bugman | 2009-02-11 15:29:41 +0100 (Wed, 11 Feb 2009) | 3 lines
Added checks for the presence of any extractable data from the file.
................
r8777 | bugman | 2009-02-11 15:31:13 +0100 (Wed, 11 Feb 2009) | 3 lines
Fix for the system test script. The RDC and PCS data was not being read correctly.
................
r8778 | bugman | 2009-02-11 15:38:28 +0100 (Wed, 11 Feb 2009) | 3 lines
Print out fixes.
................
r8779 | bugman | 2009-02-11 15:47:15 +0100 (Wed, 11 Feb 2009) | 5 lines
Bug fix, changed all the default args to None.
If columns are normally missing, the column args should be None!
................
r8780 | bugman | 2009-02-11 15:51:03 +0100 (Wed, 11 Feb 2009) | 3 lines
Bug fixes for the print outs.
................
r8781 | bugman | 2009-02-11 16:54:43 +0100 (Wed, 11 Feb 2009) | 3 lines
Caught the missing paramagnetic centre.
................
r8782 | bugman | 2009-02-11 17:03:39 +0100 (Wed, 11 Feb 2009) | 3 lines
The paramagnetic centre is now set.
................
r8783 | bugman | 2009-02-11 17:07:33 +0100 (Wed, 11 Feb 2009) | 3 lines
Added a few more tests for data that needs to be input.
................
r8784 | bugman | 2009-02-11 17:38:01 +0100 (Wed, 11 Feb 2009) | 3 lines
The N-state model with equal and fixed probabilities for each N state can now be optimised.
................
r8785 | bugman | 2009-02-11 17:39:01 +0100 (Wed, 11 Feb 2009) | 3 lines
Added a grid search to the system test.
................
r8786 | bugman | 2009-02-11 21:54:08 +0100 (Wed, 11 Feb 2009) | 7 lines
Bug fix for the setting of the spin name.
This was found by Pierre-Yves Savard <Pierre-Yves dot Savard att bcm dot ulaval dot ca> in the post
https://mail.gna.org/public/relax-users/2009-02/msg00008.html (Message-id:
<49932AF0.5040503@...>).
................
r8787 | bugman | 2009-02-12 09:52:45 +0100 (Thu, 12 Feb 2009) | 3 lines
Modified the grid_search() method to handle alignment tensor parameters (which aren't in cdp.params).
................
r8788 | bugman | 2009-02-12 09:57:11 +0100 (Thu, 12 Feb 2009) | 3 lines
Constraints are turned off for the 'fixed' model!
................
r8789 | bugman | 2009-02-12 10:06:45 +0100 (Thu, 12 Feb 2009) | 3 lines
Set the grid search lower bound for alignment tensor elements from 0 to -1e-3.
................
r8790 | bugman | 2009-02-12 10:13:40 +0100 (Thu, 12 Feb 2009) | 5 lines
Bug fix for the __disassemble_param_vector() method.
The probabilities do not exist in the 'fixed' model!
................
r8791 | bugman | 2009-02-12 10:19:48 +0100 (Thu, 12 Feb 2009) | 3 lines
A few changes to the system test.
................
r8792 | bugman | 2009-02-12 10:51:37 +0100 (Thu, 12 Feb 2009) | 3 lines
The alignment tensor elements are now explicitly set.
................
r8793 | bugman | 2009-02-12 11:17:34 +0100 (Thu, 12 Feb 2009) | 3 lines
Bug fixes for the N-state model when N = 1.
................
r8794 | bugman | 2009-02-12 14:39:23 +0100 (Thu, 12 Feb 2009) | 6 lines
Bug fix for the N-state model optimisation.
In __minimise_setup_rdcs(), the XH bond vector structure was being incorrectly set up if the spin
container xh_vect object is a single 3D vector.
................
r8795 | bugman | 2009-02-12 19:59:24 +0100 (Thu, 12 Feb 2009) | 6 lines
Bug fix for the PCS alignment tensor fitting.
The __minimise_setup_pcs() method was failing to determine the paramagnetic, nuclear spin distance
correctly.
................
r8796 | bugman | 2009-02-12 20:08:38 +0100 (Thu, 12 Feb 2009) | 3 lines
Modified the system test script to allow different combinations of RDC and/or PCS loading.
................
r8797 | bugman | 2009-02-13 18:05:33 +0100 (Fri, 13 Feb 2009) | 3 lines
Fixes for the system test script.
................
r8798 | bugman | 2009-02-13 18:06:25 +0100 (Fri, 13 Feb 2009) | 5 lines
Expansion of the alignment tensor fitting system tests to create 3 different tests.
The optimised values are now checked as well.
................
r8800 | bugman | 2009-02-15 12:50:39 +0100 (Sun, 15 Feb 2009) | 5 lines
Debugged the __minimise_bc_data() method.
The calculated Q-factors for the RDC and PCS were completely incorrect!
................
r8801 | bugman | 2009-02-15 12:51:13 +0100 (Sun, 15 Feb 2009) | 3 lines
Removed some debugging print outs.
................
r8802 | bugman | 2009-02-15 14:44:38 +0100 (Sun, 15 Feb 2009) | 3 lines
Added the Ca atom of GLU 3.
................
r8803 | bugman | 2009-02-15 14:45:10 +0100 (Sun, 15 Feb 2009) | 3 lines
Some fixes for the test_read_pdb_internal1() and test_read_pdb_scientific1() system tests.
................
r8804 | bugman | 2009-02-15 14:54:29 +0100 (Sun, 15 Feb 2009) | 3 lines
When finding attached atoms, the radius of atoms assumed to be bonded has been increased to 2 Angstrom.
................
r8805 | bugman | 2009-02-15 19:05:15 +0100 (Sun, 15 Feb 2009) | 5 lines
Modified how the generic peak intensity file is detected.
The change is that if no other formats are detected, relax falls back to the generic format.
................
r8806 | bugman | 2009-02-16 11:34:05 +0100 (Mon, 16 Feb 2009) | 3 lines
The RDC data is now formatted for Pales, to check the synthetic test model and relax.
................
r8807 | bugman | 2009-02-16 11:45:40 +0100 (Mon, 16 Feb 2009) | 3 lines
Modified the print out to remove the broken Eigenvalue sum and add the Saupe order matrix.
................
r8808 | bugman | 2009-02-16 14:22:13 +0100 (Mon, 16 Feb 2009) | 3 lines
Added a debugging print out.
................
r8809 | bugman | 2009-02-17 10:08:28 +0100 (Tue, 17 Feb 2009) | 5 lines
Modified the NH bond length to be 1.041 Angstrom.
This is from Ottiger, M. and Bax A., J. Am. Chem. Soc. (1998), 120, 12334-12341.
................
r8810 | bugman | 2009-02-17 10:56:07 +0100 (Tue, 17 Feb 2009) | 5 lines
Modified the NH bond length to be 1.041 Angstrom in the system test script.
This is from Ottiger, M. and Bax A., J. Am. Chem. Soc. (1998), 120, 12334-12341.
................
r8811 | bugman | 2009-02-17 11:03:19 +0100 (Tue, 17 Feb 2009) | 3 lines
Added comments saying what the gyromagnetic ratio constants used in Pales are.
................
r8812 | bugman | 2009-02-17 11:22:03 +0100 (Tue, 17 Feb 2009) | 3 lines
Added the Pales output file.
................
r8821 | semor | 2009-02-17 22:47:11 +0100 (Tue, 17 Feb 2009) | 7 lines
Corrected a out-of-date dosctring.
This was discussed in a thread at:
https://mail.gna.org/public/relax-devel/2009-02/msg00003.html
(Message-id: <498C75A0.4000408@...>)
................
r8822 | bugman | 2009-02-18 11:40:33 +0100 (Wed, 18 Feb 2009) | 5 lines
Added the bond length values for RDC usage.
These are from Ottiger, M. and Bax A., J. Am. Chem. Soc. (1998), 120, 12334-12341.
................
r8823 | bugman | 2009-02-18 11:56:49 +0100 (Wed, 18 Feb 2009) | 3 lines
Added a script to randomise the RDC and PCS data, and the randomised data.
................
r8824 | bugman | 2009-02-18 14:12:54 +0100 (Wed, 18 Feb 2009) | 5 lines
Created a Pales input file for the randomised RDCs.
This randomised the data again!
................
r8825 | bugman | 2009-02-18 14:16:29 +0100 (Wed, 18 Feb 2009) | 3 lines
Added the Pales output for the randomised RDCs.
................
r8826 | bugman | 2009-02-18 14:29:49 +0100 (Wed, 18 Feb 2009) | 3 lines
Added 3 system tests checking the optimisation of the randomised RDC and PCS data.
................
r8828 | bugman | 2009-02-18 14:49:26 +0100 (Wed, 18 Feb 2009) | 3 lines
The alignment tensor components are now also printed out for debugging.
................
r8829 | bugman | 2009-02-18 15:02:33 +0100 (Wed, 18 Feb 2009) | 6 lines
Modified the randomised RDC and PCS tensor optimisation system test checks.
The values are now matched against those from relax! Not really reliable, but they are close to
Pales by 10% for the pure RDC fit, all except the Q-factor!
................
r8830 | bugman | 2009-02-18 15:03:44 +0100 (Wed, 18 Feb 2009) | 3 lines
The Q-factors for the RDC and PCS were switched.
................
r8831 | bugman | 2009-02-19 10:38:59 +0100 (Thu, 19 Feb 2009) | 3 lines
Converted all the remaining value user function to the new relax design.
................
r8832 | bugman | 2009-02-19 10:41:03 +0100 (Thu, 19 Feb 2009) | 3 lines
A few fixes for the new relax design.
................
r8861 | bugman | 2009-02-22 23:00:08 +0100 (Sun, 22 Feb 2009) | 3 lines
Fixed some circular import issues.
................
r8862 | bugman | 2009-02-22 23:03:48 +0100 (Sun, 22 Feb 2009) | 3 lines
Converted the rest of the generic_fns.relax_data module to the 1.3 line relax design.
................
r8879 | bugman | 2009-02-27 14:31:58 +0100 (Fri, 27 Feb 2009) | 5 lines
Allowed molecule.name() to name unnamed molecules.
I.e. the mol_id arg can be None.
................
r8893 | bugman | 2009-02-27 18:58:24 +0100 (Fri, 27 Feb 2009) | 3 lines
The diagonalised alignment tensor is now being created (and is being done correctly).
................
r8894 | bugman | 2009-03-02 17:26:48 +0100 (Mon, 02 Mar 2009) | 5 lines
Fix for the calc_tensor_diag() function.
The algorithm for finding Ayy was broken.
................
r8895 | bugman | 2009-03-02 17:34:06 +0100 (Mon, 02 Mar 2009) | 5 lines
Fix for the test_name_argfail_mol_id() unit test.
The mol_id can be None, i.e. for naming unnamed molecules.
................
r8896 | bugman | 2009-03-02 17:35:33 +0100 (Mon, 02 Mar 2009) | 3 lines
Fixed the check for None in molecule.name().
................
r8897 | bugman | 2009-03-02 17:42:04 +0100 (Mon, 02 Mar 2009) | 5 lines
Allowed the spin_num arg of spin.create() to be None.
This is useful for polymers where the name is important rather than number.
................
r8898 | bugman | 2009-03-04 10:32:28 +0100 (Wed, 04 Mar 2009) | 3 lines
Fix for the test_create_argfail_spin_num() unit test.
................
r8900 | bugman | 2009-03-04 15:33:51 +0100 (Wed, 04 Mar 2009) | 6 lines
Changed the way the Q-factor is calculated.
The Q-factor is now calculated as Clore's R-factor divided by N. This now matches the Pales default
mode.
................
r8901 | bugman | 2009-03-04 15:37:49 +0100 (Wed, 04 Mar 2009) | 3 lines
Both Q-factors are now being calculated.
................
r8902 | bugman | 2009-03-04 17:17:28 +0100 (Wed, 04 Mar 2009) | 3 lines
Changed the Q-factors tested in the system tests.
................
r8909 | bugman | 2009-03-06 10:59:32 +0100 (Fri, 06 Mar 2009) | 3 lines
Added another unit test to reveal a bug in the spin.copy() user function.
................
r8910 | bugman | 2009-03-06 11:05:09 +0100 (Fri, 06 Mar 2009) | 5 lines
Bug fix for the spin.copy() user function.
Non-empty spin containers are no longer overwritten if the name and num are set to None.
................
r8916 | bugman | 2009-03-06 14:29:19 +0100 (Fri, 06 Mar 2009) | 5 lines
The force flag has been introduced to the mol/res/spin naming and numbering functions.
The default is now not to overwrite.
................
r8917 | bugman | 2009-03-06 14:37:58 +0100 (Fri, 06 Mar 2009) | 3 lines
Fixes for all the unit tests of the mol/res/spin naming and numbering.
................
r8918 | bugman | 2009-03-06 14:46:30 +0100 (Fri, 06 Mar 2009) | 3 lines
All mol/res/spin naming and number user functions now accept the force arg.
................
r8919 | bugman | 2009-03-06 15:05:14 +0100 (Fri, 06 Mar 2009) | 3 lines
Fixes for 2 unit vectors system tests.
................
r8925 | bugman | 2009-03-06 19:21:27 +0100 (Fri, 06 Mar 2009) | 5 lines
The read() function has been split into to for code recycling in the bmrb branch.
The new pack_data() function has been spun off to fill the data pipe and spin containers.
................
r8926 | bugman | 2009-03-06 19:25:21 +0100 (Fri, 06 Mar 2009) | 5 lines
Bug fix for the read() function.
The construction of the data for sending to pack_data() was failing.
................
r8927 | bugman | 2009-03-06 19:25:49 +0100 (Fri, 06 Mar 2009) | 3 lines
Spacing fix.
................
r8929 | bugman | 2009-03-08 22:36:03 +0100 (Sun, 08 Mar 2009) | 3 lines
None args are now allowed in pack_data(), and the arg lengths are checked.
................
r8932 | bugman | 2009-03-08 23:35:24 +0100 (Sun, 08 Mar 2009) | 7 lines
Redesigned the spin.create() and residue.create() user functions.
The res_id and mol_id args are no longer supplied. Instead the residue name and number and molecule
name is used. If the molecule or residue does not exist when these user functions are called, then
they will be automatically created.
................
r8935 | bugman | 2009-03-08 23:43:20 +0100 (Sun, 08 Mar 2009) | 5 lines
Fix for the pack_data() function.
The spin wasn't being fetched after its creation.
................
r8963 | semor | 2009-03-10 20:52:43 +0100 (Tue, 10 Mar 2009) | 7 lines
Fix for bug 13163 : latex_mf_table.py sample script broken.
Discussion on this topic is in a thread at:
https://mail.gna.org/public/relax-devel/2009-03/msg00007.html
(Message-id: <49B6A6B1.4080305@...>)
................
r8971 | bugman | 2009-03-12 10:37:49 +0100 (Thu, 12 Mar 2009) | 3 lines
Modified the full_analysis.py script to perform 500 MC sims and turned on automatic looping.
................
r8972 | bugman | 2009-03-12 11:25:53 +0100 (Thu, 12 Mar 2009) | 5 lines
Added a line with the relax URL (http://nmr-relax.com) in the script docstring.
This is in case someone has the script and not relax.
................
r8974 | semor | 2009-03-12 18:17:30 +0100 (Thu, 12 Mar 2009) | 7 lines
Fix for bug 13162: Rex values in XML results file not in s-1.
The units are now correctly given in the XML results fiel as discussed in a thread at:
https://mail.gna.org/public/relax-devel/2009-03/msg00010.html
(Message-id: <20090310-141629.sv7147.79009@...>)
................
r8976 | semor | 2009-03-12 18:56:28 +0100 (Thu, 12 Mar 2009) | 10 lines
Reverted r8974.
This follows a remark by Ed at:
https://mail.gna.org/public/relax-devel/2009-03/msg00033.html
(Message-id: <7f080ed10903121024h7a0a3808m3c268ca1f276ee4a@...>)
The command used was:
svn merge -r8974:8973 .
................
r8977 | semor | 2009-03-12 19:01:24 +0100 (Thu, 12 Mar 2009) | 7 lines
Now correctly fixed bug 13162: Rex values in XML results file not in s-1.
This follows a remark by Ed at:
https://mail.gna.org/public/relax-devel/2009-03/msg00033.html
(Message-id: <7f080ed10903121024h7a0a3808m3c268ca1f276ee4a@...>)
................
r8979 | semor | 2009-03-16 19:52:15 +0100 (Mon, 16 Mar 2009) | 9 lines
Fix for bug 13032: Bug in structure.create diff tensor pdb
The Dz unit in dependency_generator() were erroneous, inputing 'alpha' and 'beta' instead of 'beta' and 'gamma'.
This had the effect of creating a weird shaped ellipsoid diffusion tensor representation when 'alpha' and 'beta' were set to unequal values.
This is now fixed, yielding properly shaped diffusion tensor representations for any angles 'alpha', beta' and 'gamma'.
................
r8980 | semor | 2009-03-16 19:59:34 +0100 (Mon, 16 Mar 2009) | 11 lines
Changed units of model-free parameters in the test suite results file according to r8977.
ns -> seconds
ps -> seconds
Angstrom -> meters
x MHz -> sigma_ex = Rex / omega**2
ppm -> unitless
The bzipped file was changed directly with vim. The system tests now pass without error,
................
r8981 | bugman | 2009-03-18 15:48:09 +0100 (Wed, 18 Mar 2009) | 5 lines
Bug fix!
Debugged intensity_sparky() to handle a Sparky assignment such as '004N-H'.
................
r8982 | bugman | 2009-03-20 09:49:03 +0100 (Fri, 20 Mar 2009) | 5 lines
Added the Bruker ncproc parameter to handle Topspin's integer scaling of FID intensities.
The data is now internally scaled by 2**ncproc.
................
r8983 | bugman | 2009-03-20 11:28:13 +0100 (Fri, 20 Mar 2009) | 3 lines
RMSD of baseplane noise is now scaled by NC_proc.
................
r8984 | bugman | 2009-03-20 15:22:14 +0100 (Fri, 20 Mar 2009) | 3 lines
Fixed a bad apostrophe character causing the script to fail.
................
r8985 | bugman | 2009-03-20 15:28:37 +0100 (Fri, 20 Mar 2009) | 3 lines
Comment fix - missing data and error column args.
................
r8986 | bugman | 2009-03-20 15:39:45 +0100 (Fri, 20 Mar 2009) | 3 lines
Removed a check disallowing multiple NOE data sets at the same spectrometer frequency.
................
r8987 | bugman | 2009-03-20 16:55:06 +0100 (Fri, 20 Mar 2009) | 5 lines
Bug fix for the results reading from_xml() method.
The molecule name was being evaluated?!?
................
r8988 | bugman | 2009-03-20 17:35:00 +0100 (Fri, 20 Mar 2009) | 3 lines
Allowed vectors() to generate vectors even if the spin numbers are different (for different PDBs).
................
r8989 | bugman | 2009-03-20 17:35:55 +0100 (Fri, 20 Mar 2009) | 3 lines
Also removed the molecule name (for different PDBs).
................
r8990 | bugman | 2009-03-20 17:44:37 +0100 (Fri, 20 Mar 2009) | 5 lines
Made the call to cdp.structure.bond_vectors() more fault tolerant.
The molecule name, residue name, and spin number are removed to allow for different structures!
................
r8997 | bugman | 2009-03-25 21:49:55 +0100 (Wed, 25 Mar 2009) | 5 lines
Modified the model elimination print out to show the data pipe name.
This was picked up while trying to debug bug #13259 (https://gna.org/bugs/index.php?13259).
................
r8998 | bugman | 2009-03-25 22:26:06 +0100 (Wed, 25 Mar 2009) | 3 lines
Clean up of the model_loop() checking.
................
r8999 | bugman | 2009-03-25 22:42:30 +0100 (Wed, 25 Mar 2009) | 6 lines
Removed the check for spin selection so that determine_model_type() works with nothing selected.
This is a partial response to bug #13259 (https://gna.org/bugs/index.php?13259) reported by
Pierre-Yves Savard (pierre-yves dot savard att bcm dot ulaval dot ca).
................
r9000 | bugman | 2009-03-26 00:21:17 +0100 (Thu, 26 Mar 2009) | 3 lines
Fixes for the MC sim methods for deselected spins.
................
r9001 | bugman | 2009-03-26 00:42:14 +0100 (Thu, 26 Mar 2009) | 5 lines
Modified the structure.vectors() user function to fail if no vectors are found.
This saves a lot of sanity when debugging a user script which fails.
................
r9002 | bugman | 2009-03-26 15:10:14 +0100 (Thu, 26 Mar 2009) | 7 lines
Bug fix for bug #13259 (https://gna.org/bugs/index.php?13259).
This bug was reported by Pierre-Yves Savard (pierre-yves dot savard att bcm dot ulaval dot ca).
The bug may not be completely gone yet.
................
r9003 | bugman | 2009-03-26 16:40:57 +0100 (Thu, 26 Mar 2009) | 6 lines
Fix for the regression of bug #12607 (https://gna.org/bugs/?12607).
The determine_model_type() method now handles the strange case where no spins are selected
(gracefully).
................
r9010 | bugman | 2009-04-15 14:33:53 +0200 (Wed, 15 Apr 2009) | 5 lines
Expanded the test_read_pdb_internal3() and test_read_pdb_scientific3() system tests.
Now the reading of atomic positions from different models is tested.
................
r9011 | bugman | 2009-04-15 15:28:15 +0200 (Wed, 15 Apr 2009) | 6 lines
Removed a test in load_spins() causing a bug.
This test is totally unnecessary as the structures are not created if they already exist. This was
causing only the position from the first model to be extracted, if ave_pos was False.
................
r9015 | bugman | 2009-04-27 15:26:25 +0200 (Mon, 27 Apr 2009) | 5 lines
Bug fix.
The PyMOL code was failing because of the new design of the structural data object.
................
r9016 | bugman | 2009-04-28 13:47:51 +0200 (Tue, 28 Apr 2009) | 3 lines
Added a catch for bug #13442 (https://gna.org/bugs/index.php?13442) to the test suite.
................
r9017 | bugman | 2009-04-28 14:02:02 +0200 (Tue, 28 Apr 2009) | 6 lines
Fix for bug #13442 (https://gna.org/bugs/index.php?13442).
The problem was that global minimisation objects were being accessed when the do not exist. These
are now skipped.
................
r9019 | bugman | 2009-04-28 14:05:30 +0200 (Tue, 28 Apr 2009) | 3 lines
Initialized merge tracking via "svnmerge" with revisions "1-8161" from
svn+ssh://bugman@.../svn/relax/branches/ave_noe
................
r9020 | bugman | 2009-04-28 14:28:05 +0200 (Tue, 28 Apr 2009) | 321 lines
Merged revisions 8162-8179,8181-8182,8643-8655,8657-8668,8671-8672,8674,8677,8679-8680,8689-8695,8700-8701,8710-8713,8716,9005-9009,9013 via svnmerge from
svn+ssh://bugman@.../svn/relax/branches/ave_noe
........
r8162 | bugman | 2008-12-08 16:41:32 +0100 (Mon, 08 Dec 2008) | 5 lines
Fix for the noe.read_constraints() user function.
The noe object is called noe_obj.
........
r8163 | bugman | 2008-12-08 16:46:53 +0100 (Mon, 08 Dec 2008) | 7 lines
The noe.read_constraints() user function now calls generic_fns.noesy.read_constraints().
The noe user functions need not all point to the specific NOE object! Maybe later the steady-state
NOE can be separated from the NOESY, but for now it isn't too illogical for both to be in the same
user function class.
........
r8164 | bugman | 2008-12-08 16:48:34 +0100 (Mon, 08 Dec 2008) | 3 lines
Created an empty module for NOESY data.
........
r8165 | bugman | 2008-12-09 10:30:36 +0100 (Tue, 09 Dec 2008) | 3 lines
Wrote a stub function generic_fns.noesy.read_constraints().
........
r8166 | bugman | 2008-12-09 10:37:16 +0100 (Tue, 09 Dec 2008) | 3 lines
Added a directory to the test-suite for holding NOE restraint data.
........
r8167 | bugman | 2008-12-09 10:39:00 +0100 (Tue, 09 Dec 2008) | 5 lines
Added an RNA H-bond Xplor restraint file.
This comes from http://bass.chem.yale.edu/labdocs/packages/xplor.html.
........
r8168 | bugman | 2008-12-09 10:45:58 +0100 (Tue, 09 Dec 2008) | 5 lines
Added the system test framework for NOE restraint reading tests.
This includes one test for the reading of RNA H-bond restraints from an Xplor formatted input file.
........
r8169 | bugman | 2008-12-09 10:47:29 +0100 (Tue, 09 Dec 2008) | 3 lines
Renamed 'constraints' to 'restraints' for the NOEs.
........
r8170 | bugman | 2008-12-09 11:04:24 +0100 (Tue, 09 Dec 2008) | 3 lines
The RNA sequence of the noe_rna_hbond.dat file is now generated through a new class method.
........
r8171 | bugman | 2008-12-09 11:06:01 +0100 (Tue, 09 Dec 2008) | 3 lines
Renamed all the noe.read_constraints() references in the unit tests to noe.read_restraints().
........
r8172 | bugman | 2008-12-09 13:31:47 +0100 (Tue, 09 Dec 2008) | 5 lines
Completed the test_read_xplor_rna() system test.
Checks for the restraint list have now been added.
........
r8173 | bugman | 2008-12-09 13:32:57 +0100 (Tue, 09 Dec 2008) | 3 lines
Activated the Noe_restraints system test framework.
........
r8174 | bugman | 2008-12-09 13:33:19 +0100 (Tue, 09 Dec 2008) | 3 lines
Bug fix in the rna_seq() method.
........
r8175 | bugman | 2008-12-09 13:36:17 +0100 (Tue, 09 Dec 2008) | 3 lines
Another bug fix for the rna_seq() sequence generation method.
........
r8176 | bugman | 2008-12-09 13:49:38 +0100 (Tue, 09 Dec 2008) | 3 lines
Final fixes for the rna_seq() sequence generation method.
........
r8177 | bugman | 2008-12-09 13:50:30 +0100 (Tue, 09 Dec 2008) | 3 lines
Fix for the call to noe.read_restraints() in test_read_xplor_rna().
........
r8178 | bugman | 2008-12-09 13:57:32 +0100 (Tue, 09 Dec 2008) | 3 lines
Removed the non-existent frq arg and a docstring clarification about the relax formatted file.
........
r8179 | bugman | 2008-12-09 14:02:53 +0100 (Tue, 09 Dec 2008) | 3 lines
Missing import!
........
r8181 | bugman | 2008-12-10 14:30:44 +0100 (Wed, 10 Dec 2008) | 3 lines
Added a missing import.
........
r8182 | bugman | 2008-12-10 15:18:38 +0100 (Wed, 10 Dec 2008) | 3 lines
Added some more code to the read_restraints() function.
........
r8643 | bugman | 2009-01-26 11:52:11 +0100 (Mon, 26 Jan 2009) | 3 lines
Wrote the __file_format() function for determining the NOE restraint file format.
........
r8644 | bugman | 2009-01-26 13:30:06 +0100 (Mon, 26 Jan 2009) | 3 lines
The non-implemented function generic_fns.xplor.parse_noe_restraints() is now being called.
........
r8645 | bugman | 2009-01-26 13:44:06 +0100 (Mon, 26 Jan 2009) | 3 lines
Reverted to calling file.readlines() rather than file.read().
........
r8646 | bugman | 2009-01-26 15:01:10 +0100 (Mon, 26 Jan 2009) | 6 lines
Created the Xplor module for handling Xplor formatted files.
The function parse_noe_restraints() has been added to parse the NOE restraints. The function
strip_comments() has been written to remove Xplor comments from the input data.
........
r8647 | bugman | 2009-01-26 15:24:53 +0100 (Mon, 26 Jan 2009) | 3 lines
Created __convert_to_id() to convert from Xplor atom string to relax atom id.
........
r8648 | bugman | 2009-01-26 15:31:05 +0100 (Mon, 26 Jan 2009) | 3 lines
Added checks to make sure spin containers corresponding to the Xplor atom strings exist.
........
r8649 | bugman | 2009-01-26 16:26:45 +0100 (Mon, 26 Jan 2009) | 3 lines
Typo fix. 'H4' should have been 'N4'!
........
r8650 | bugman | 2009-01-26 16:32:49 +0100 (Mon, 26 Jan 2009) | 3 lines
The NOE restraints are now stored in the current data pipe.
........
r8651 | bugman | 2009-01-26 16:39:22 +0100 (Mon, 26 Jan 2009) | 3 lines
Fixes for the test_read_xplor_rna() system test.
........
r8652 | bugman | 2009-01-26 16:40:32 +0100 (Mon, 26 Jan 2009) | 5 lines
Modified the NOE restraint list so that some restraints are spread across 2 lines.
This should test the Xplor parsing code better.
........
r8653 | bugman | 2009-01-26 16:42:12 +0100 (Mon, 26 Jan 2009) | 5 lines
Bug fix for the parse_noe_restraints() function.
Xplor restraints spread across 2 lines are now properly handled.
........
r8654 | bugman | 2009-01-26 16:43:23 +0100 (Mon, 26 Jan 2009) | 3 lines
Added a few comments to test the Xplor parsing even more.
........
r8655 | bugman | 2009-01-26 18:44:13 +0100 (Mon, 26 Jan 2009) | 3 lines
Shifted the checks of the atom id strings from the Xplor parser to the NOE restraint reading fn.
........
r8657 | bugman | 2009-01-27 09:35:53 +0100 (Tue, 27 Jan 2009) | 3 lines
Missing RelaxError import.
........
r8658 | bugman | 2009-01-27 09:44:38 +0100 (Tue, 27 Jan 2009) | 3 lines
Added some test NOEs, in a generic formatted file, for phthalic acid and testing the NOE reading.
........
r8659 | bugman | 2009-01-27 10:01:41 +0100 (Tue, 27 Jan 2009) | 3 lines
Created a system test for the reading of a generically formatted NOE restraint file.
........
r8660 | bugman | 2009-01-27 10:15:15 +0100 (Tue, 27 Jan 2009) | 3 lines
Removed an unused import.
........
r8661 | bugman | 2009-01-27 10:16:04 +0100 (Tue, 27 Jan 2009) | 3 lines
The generically formatted NOE restraint file is now being parsed.
........
r8662 | bugman | 2009-01-27 11:10:45 +0100 (Tue, 27 Jan 2009) | 3 lines
Modified the phthalic acid NOE restraint reading test to include pseudo-atoms.
........
r8663 | bugman | 2009-01-27 13:45:15 +0100 (Tue, 27 Jan 2009) | 3 lines
Removed the '@' from the pseudo-atom spin names.
........
r8664 | bugman | 2009-01-27 13:47:35 +0100 (Tue, 27 Jan 2009) | 3 lines
Wrote a unit test for the creation of pseudo-atom spin containers.
........
r8665 | bugman | 2009-01-27 13:55:57 +0100 (Tue, 27 Jan 2009) | 3 lines
Wrote 5 arg unit tests for the spin.create_pseudo() user function.
........
r8666 | bugman | 2009-01-27 14:00:37 +0100 (Tue, 27 Jan 2009) | 3 lines
Wrote the interface for the spin.create_pseudo() user function.
........
r8667 | bugman | 2009-01-27 14:03:18 +0100 (Tue, 27 Jan 2009) | 3 lines
Fixes for the arg unit tests of spin.create_pseudo().
........
r8668 | bugman | 2009-01-27 14:06:13 +0100 (Tue, 27 Jan 2009) | 3 lines
Imported the non-existant create_pseudo_spin() function.
........
r8671 | bugman | 2009-01-27 16:14:22 +0100 (Tue, 27 Jan 2009) | 3 lines
Wrote the create_pseudo_spin() and __linear_ave() functions for pseudo-atom support.
........
r8672 | bugman | 2009-01-27 16:17:07 +0100 (Tue, 27 Jan 2009) | 5 lines
Fix for the phthalic acid NOE restraint reading system test.
Pseudo-atom creation was not correctly called.
........
r8674 | bugman | 2009-01-27 16:27:54 +0100 (Tue, 27 Jan 2009) | 3 lines
Fixes for the create_pseudo_spin() and __linear_ave() functions.
........
r8677 | bugman | 2009-01-27 16:41:23 +0100 (Tue, 27 Jan 2009) | 3 lines
Fixes for the 2 test_create_pseudo_spin() unit tests.
........
r8679 | bugman | 2009-01-27 16:49:58 +0100 (Tue, 27 Jan 2009) | 3 lines
Fixes for the test_create_pseudo_spin() unit test. The atomic positions are now set.
........
r8680 | bugman | 2009-01-27 16:51:47 +0100 (Tue, 27 Jan 2009) | 3 lines
The __linear_ave() now handles the coordinates as numpy arrays.
........
r8689 | bugman | 2009-01-28 11:24:04 +0100 (Wed, 28 Jan 2009) | 3 lines
Added some more checks for the test_create_pseudo_spin() unit test.
........
r8690 | bugman | 2009-01-28 11:30:24 +0100 (Wed, 28 Jan 2009) | 3 lines
Wrote a second unit test for the creation of a pseudo-spin.
........
r8691 | bugman | 2009-01-28 11:38:57 +0100 (Wed, 28 Jan 2009) | 3 lines
Modified the checks for the pseudo-spin creation unit tests.
........
r8692 | bugman | 2009-01-28 11:40:14 +0100 (Wed, 28 Jan 2009) | 5 lines
The pseudo-spin name and number is now stored in the member spin containers.
This gives a mapping between from the spin to the pseudo-spin.
........
r8693 | bugman | 2009-01-28 11:40:50 +0100 (Wed, 28 Jan 2009) | 3 lines
Fixes for test_create_pseudo_spin() and test_create_pseudo_spin2().
........
r8694 | bugman | 2009-01-28 11:41:27 +0100 (Wed, 28 Jan 2009) | 3 lines
One more fix for test_create_pseudo_spin().
........
r8695 | bugman | 2009-01-28 11:42:32 +0100 (Wed, 28 Jan 2009) | 3 lines
The members list is now stored in the pseudo-spin to map this to the respective spin containers.
........
r8700 | bugman | 2009-01-29 09:42:21 +0100 (Thu, 29 Jan 2009) | 3 lines
Added a call to calc() to test the quadratic potential calculation.
........
r8701 | bugman | 2009-01-29 16:40:07 +0100 (Thu, 29 Jan 2009) | 5 lines
Created a module for calculating different optimisation/energy potentials.
The function quad_pot() has been written to provide a flat-bottom potential.
........
r8710 | bugman | 2009-02-02 10:44:48 +0100 (Mon, 02 Feb 2009) | 3 lines
Added tests for the existence of the current data pipe.
........
r8711 | bugman | 2009-02-02 10:49:06 +0100 (Mon, 02 Feb 2009) | 3 lines
Modified the RelaxNoModelError print out to be more informative, especially for the N-state model.
........
r8712 | bugman | 2009-02-02 10:51:17 +0100 (Mon, 02 Feb 2009) | 3 lines
Added the start of the calculate() method.
........
r8713 | bugman | 2009-02-02 10:51:45 +0100 (Mon, 02 Feb 2009) | 3 lines
The N-state model is now selected in the NOESY system test.
........
r8716 | bugman | 2009-02-02 11:05:21 +0100 (Mon, 02 Feb 2009) | 3 lines
Modified __base_data_types() to include NOE restraints.
........
r9005 | bugman | 2009-04-09 19:33:13 +0200 (Thu, 09 Apr 2009) | 3 lines
Fixed the calls to generic_fns.mol_res_spin.spin.create() function.
........
r9006 | bugman | 2009-04-09 19:46:04 +0200 (Thu, 09 Apr 2009) | 5 lines
Fix for the rna_seq() method.
The create_residue() and create_molecule() functions were being incorrectly called.
........
r9007 | bugman | 2009-04-10 20:43:00 +0200 (Fri, 10 Apr 2009) | 5 lines
Added the calc_ave_dist() method.
This doesn't work yet and has been cut and paste from an external relax script.
........
r9008 | bugman | 2009-04-15 11:46:03 +0200 (Wed, 15 Apr 2009) | 3 lines
Completed the calculate() and calc_ave_dist() methods for the dynamically averaged NOE analysis.
........
r9009 | bugman | 2009-04-15 14:04:02 +0200 (Wed, 15 Apr 2009) | 3 lines
Bug fix in the calc_ave_dist() method for multiple models.
........
r9013 | bugman | 2009-04-15 17:06:54 +0200 (Wed, 15 Apr 2009) | 5 lines
Bug fix for the calc_ave_dist() method.
The negative of the exponential was being used!
........
................
r9021 | bugman | 2009-04-28 15:02:54 +0200 (Tue, 28 Apr 2009) | 3 lines
Fixed the testing of the Monte Carlo simulations.
................
r9022 | bugman | 2009-04-28 15:03:39 +0200 (Tue, 28 Apr 2009) | 5 lines
Bug fix.
The minimisation statistics are no longer reset by the Monte Carlo simulation setup.
................
r9023 | bugman | 2009-04-28 17:50:25 +0200 (Tue, 28 Apr 2009) | 6 lines
The centre() function can now handle pseudoatoms.
Positional information is taken from the mol, res, spin data structure rather than the structural
object, hence pseudoatoms can be supported.
................
r9024 | bugman | 2009-04-28 17:52:06 +0200 (Tue, 28 Apr 2009) | 3 lines
Removed merge tracking for "svnmerge" for
svn+ssh://bugman@.../svn/relax/branches/ave_noe
................
r9028 | bugman | 2009-04-28 18:06:17 +0200 (Tue, 28 Apr 2009) | 3 lines
Fix for the __assemble_scaling_matrix() method for the 'fixed' N-state model.
................
r9029 | bugman | 2009-04-28 19:34:45 +0200 (Tue, 28 Apr 2009) | 5 lines
Fix for the 'fixed' N-state model.
When constraints are automatically turned off for this, the minimisation algorithm should as change.
................
r9030 | bugman | 2009-04-28 19:45:17 +0200 (Tue, 28 Apr 2009) | 6 lines
Fixed a bug introduced at r9029.
The removal of the 'Method of Multipliers' algorithm with automatic constraint removal didn't take
the grid search into account.
................
r9031 | bugman | 2009-04-29 10:41:43 +0200 (Wed, 29 Apr 2009) | 6 lines
Fixed a bug introduced at r9023.
The spin position was being assumed to be a list of numpy arrays, but in some cases it was simply a
numpy array.
................
r9032 | bugman | 2009-04-29 10:57:31 +0200 (Wed, 29 Apr 2009) | 3 lines
The lanthanide atoms are now loaded into the relax data store for the lactose N-state model test.
................
r9033 | bugman | 2009-04-29 11:01:49 +0200 (Wed, 29 Apr 2009) | 5 lines
Some more fixes for the centre() function.
This should now be fully debugged!
................
r9034 | bugman | 2009-04-29 11:10:20 +0200 (Wed, 29 Apr 2009) | 3 lines
Added the ave_pos flag to the pcs.centre() user function.
................
r9035 | bugman | 2009-04-29 11:23:36 +0200 (Wed, 29 Apr 2009) | 3 lines
Added support for multiple paramagnetic centre extraction to the centre() function.
................
r9036 | bugman | 2009-05-06 10:50:56 +0200 (Wed, 06 May 2009) | 3 lines
Added an Xplor NOE restraint file fragment with a methyl group.
................
r9037 | bugman | 2009-05-06 10:55:04 +0200 (Wed, 06 May 2009) | 3 lines
Added a system test for the reading of the Xplor pseudoatom data.
................
r9038 | bugman | 2009-05-06 13:52:18 +0200 (Wed, 06 May 2009) | 3 lines
Fixes for the NOE restraint system tests.
................
r9039 | bugman | 2009-05-06 16:50:13 +0200 (Wed, 06 May 2009) | 3 lines
Added pseudoatom support to the parse_noe_restraints() function.
................
r9040 | bugman | 2009-05-06 17:03:00 +0200 (Wed, 06 May 2009) | 6 lines
Rewrote how the Xplor NOE restraints are read.
Two new functions, first_parse() and second_parse() have been written to first extract all assign
statements and then handle pseudoatoms.
................
r9042 | bugman | 2009-05-09 18:10:07 +0200 (Sat, 09 May 2009) | 5 lines
Bug fix for the test_opt_constr_newton_gmw_mt_S2_0_970_te_2048_Rex_0_149() system test.
This is solely for Python 2.6.
................
r9043 | bugman | 2009-05-09 18:22:35 +0200 (Sat, 09 May 2009) | 5 lines
Python 2.6 bug fix for the RelaxWarnings format() function.
The warn.formatwarning() function this replaces has a new keyword arg.
................