Menu

SVN archive Commit Log


Commit Date  
[r17835] by bugman

Merged revisions 17623 via svnmerge from
svn+ssh://bugman@.../svn/relax/trunk

........
r17623 | bugman | 2012-10-01 18:48:11 +0200 (Mon, 01 Oct 2012) | 5 lines

Python 3 preparations - removed all of the string module functions which no longer exist in Python 3.

These functions are part of the strings themselves now.
........

2012-10-16 08:40:17 Tree
[r17834] by bugman

Merged revisions 17621-17622 via svnmerge from
svn+ssh://bugman@.../svn/relax/trunk

........
r17621 | bugman | 2012-10-01 14:04:16 +0200 (Mon, 01 Oct 2012) | 3 lines

Fix for bug #20210 (https://gna.org/bugs/?20210) - relax now runs again without having wxPython installed.
........
r17622 | bugman | 2012-10-01 18:13:20 +0200 (Mon, 01 Oct 2012) | 5 lines

Improvements for the relax test suite synopsis for when the wxPython module is missing or broken.

This is simply a printout improvement.
........

2012-10-16 08:31:23 Tree
[r17833] by bugman

Merged revisions 17601-17620 via svnmerge from
svn+ssh://bugman@.../svn/relax/trunk

........
r17601 | bugman | 2012-09-28 17:17:05 +0200 (Fri, 28 Sep 2012) | 3 lines

More exception handling changes to be Python 2.4+ compatible.
........
r17602 | bugman | 2012-09-28 17:22:32 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - eliminated the use of the os.popen3 function from the info module.
........
r17603 | bugman | 2012-09-28 17:28:11 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - all os.popen3() instances in relax have been replaced by the subprocess module.
........
r17604 | bugman | 2012-09-28 17:28:56 +0200 (Fri, 28 Sep 2012) | 3 lines

Removed an unused import (which was breaking relax in Python 3).
........
r17605 | bugman | 2012-09-28 17:55:25 +0200 (Fri, 28 Sep 2012) | 3 lines

Removed the completely unused gui.components.conversion module.
........
r17606 | bugman | 2012-09-28 18:08:24 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - all usage of string.split() and string.strip() has been eliminated.
........
r17607 | bugman | 2012-09-28 18:11:48 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - compatibility for both the Python 2 cPickle and Python 3 pickle modules.
........
r17608 | bugman | 2012-09-28 18:20:48 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - removed the use of the types.ClassType object.
........
r17609 | bugman | 2012-09-28 18:32:10 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - converted the relax prompt/script interpreter to be Python 2 and 3 compatible.
........
r17610 | bugman | 2012-09-28 18:34:49 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - error handling is now Python 2 and 3 compatible in the relax_io module.
........
r17611 | bugman | 2012-09-28 18:50:32 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparation - all raising of RelaxErrors is now Python 2.4+ compatible.
........
r17612 | bugman | 2012-09-28 18:52:10 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - more exception handling updates for all Python 2.4+ versions.
........
r17613 | bugman | 2012-09-28 18:55:04 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - absolute module path fix.
........
r17614 | bugman | 2012-09-28 18:57:45 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - support for both Python 2 __builtin__ and Python 3 builtins modules.
........
r17615 | bugman | 2012-09-28 18:58:47 +0200 (Fri, 28 Sep 2012) | 3 lines

Bug fix for a problem introduced in the last commit.
........
r17616 | bugman | 2012-09-28 19:02:02 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - absolute module path fixes.
........
r17617 | bugman | 2012-09-28 19:04:46 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - eliminated the use of the types.ListType object.
........
r17618 | bugman | 2012-09-28 19:06:23 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - the data package now uses absolute imports for all its modules.
........
r17619 | bugman | 2012-09-28 19:13:09 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - the data package now really does use the absolute path for its module imports.
........
r17620 | bugman | 2012-09-28 19:13:30 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - removal of some unneeded xrange() calls.
........

2012-10-16 08:29:42 Tree
[r17832] by bugman

Merged revisions 17581-17600 via svnmerge from
svn+ssh://bugman@.../svn/relax/trunk

........
r17581 | bugman | 2012-09-28 10:58:47 +0200 (Fri, 28 Sep 2012) | 13 lines

Last Python 3 compatibility update for the system tests - they are now both Python 2 and 3 compatible!

The command used was:
2to3 -w \
-f except \
-f import \
-f imports \
-f long \
-f numliterals \
-f xrange \
.
........
r17582 | bugman | 2012-09-28 11:00:34 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparation - removed all xrange() calls from the unit tests, these are not needed.
........
r17583 | bugman | 2012-09-28 11:06:47 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - all the _prompt unit tests now use absolute module imports.
........
r17584 | bugman | 2012-09-28 11:08:34 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparation - all of the _generic_fns unit tests now use absolute module imports.
........
r17585 | bugman | 2012-09-28 11:09:41 +0200 (Fri, 28 Sep 2012) | 6 lines

Python 3 preparations - the unit tests are now fully Python 2 and 3 compatible.

The command used was:
2to3 -w -f except -f import -f imports -f long -f numliterals -f xrange .
........
r17586 | bugman | 2012-09-28 11:32:12 +0200 (Fri, 28 Sep 2012) | 5 lines

Bug fix for the BMRB system test initialisation for when the bmrblib module is missing.

The base __init__() method needs to be initialised first.
........
r17587 | bugman | 2012-09-28 11:32:41 +0200 (Fri, 28 Sep 2012) | 3 lines

Removed some temporary debugging code.
........
r17588 | bugman | 2012-09-28 11:34:04 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - the test_suite.gui_tests package now uses absolute module path imports.
........
r17589 | bugman | 2012-09-28 11:42:00 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - the queue modules for both Python versions are now supported in the GUI tests.
........
r17590 | bugman | 2012-09-28 11:43:29 +0200 (Fri, 28 Sep 2012) | 6 lines

Python 3 preparations - the GUI tests are now fully Python 2 and 3 compatible.

The command used was:
2to3 -w -f except -f import -f imports -f long -f numliterals -f xrange .
........
r17591 | bugman | 2012-09-28 11:45:14 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - the use of the queue module in the status module is now compatible with 2 and 3.
........
r17592 | bugman | 2012-09-28 11:49:34 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparation - the auto_analyses package now uses absolute paths for the module imports.
........
r17593 | bugman | 2012-09-28 11:50:34 +0200 (Fri, 28 Sep 2012) | 6 lines

Python 3 preparations - the auto_analyses package is now fully Python 2 and 3 compatible.

The command used was:
2to3 -w -f except -f import -f imports -f long -f numliterals -f xrange .
........
r17594 | bugman | 2012-09-28 13:28:49 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparation - the use of an absolute module path for import.
........
r17595 | bugman | 2012-09-28 13:29:29 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparation - eliminated the unneeded use of xrange().
........
r17596 | bugman | 2012-09-28 13:36:50 +0200 (Fri, 28 Sep 2012) | 6 lines

Python 3 preparations - removed all usage of the xrange() in the generic_fns package as none are needed.

The command used was:
2to3 -w -f xrange .
........
r17597 | bugman | 2012-09-28 14:23:58 +0200 (Fri, 28 Sep 2012) | 3 lines

Updated the Python 2 to 3 checklist document for the shifting of the 'relax' file to 'relax.py'.
........
r17598 | bugman | 2012-09-28 16:40:50 +0200 (Fri, 28 Sep 2012) | 17 lines

Python 3 conversions using 2to3.

The command used was:
2to3 -w \
-f buffer \
-f idioms \
-f set_literal \
-f ws_comma \
-x except \
-x import \
-x imports \
-x long \
-x numliterals \
-x xrange \
.
........
r17599 | bugman | 2012-09-28 16:57:03 +0200 (Fri, 28 Sep 2012) | 6 lines

Reverted r17598 for the multi.processor module as this breaks in Python 2.

The command used was:
svn merge -r17598:r17597 processor.py
........
r17600 | bugman | 2012-09-28 16:58:29 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparations - exception handling fix to be Python 2.4+ compatible.
........

2012-10-16 08:27:57 Tree
[r17831] by bugman

Merged revisions 17552-17580 via svnmerge from
svn+ssh://bugman@.../svn/relax/trunk

........
r17552 | bugman | 2012-09-25 13:42:50 +0200 (Tue, 25 Sep 2012) | 7 lines

Fix for bug #20198 (https://gna.org/bugs/?20198) - the relaxation data back-calculation error.

The problem was that the call to the model-free overfit_deselect() method was deselecting any spins
lacking relaxation data! This should not happen, as no spins need to have relaxation data for this
calculation.
........
r17553 | bugman | 2012-09-25 14:03:50 +0200 (Tue, 25 Sep 2012) | 5 lines

Added the data_check Boolean argument to all of the specific analysis overfit_deselect() methods.

This allows the unit tests to pass.
........
r17554 | bugman | 2012-09-25 14:05:41 +0200 (Tue, 25 Sep 2012) | 7 lines

Added a tryptophan NE1 data set to the sphere model-free model test data.

This is in preparation to catch bug #20197 (https://gna.org/bugs/?20197).

The scripts have also been updated for the newer relax designs.
........
r17555 | bugman | 2012-09-25 14:38:21 +0200 (Tue, 25 Sep 2012) | 6 lines

Improved the model-free overfitting deselection printouts prior to optimisation.

Only a single message per spin is now given when the spin is deselected, minimising the amount of
output.
........
r17556 | bugman | 2012-09-25 14:53:03 +0200 (Tue, 25 Sep 2012) | 3 lines

More improvements to the model-free over-fitting deselection printouts.
........
r17557 | bugman | 2012-09-25 14:58:22 +0200 (Tue, 25 Sep 2012) | 5 lines

Printouts for the over-fitting deselection of spins are suppressed for the back-calculation of relaxation data.

This affects the model-free Monte Carlo simulations, simplifying the output.
........
r17558 | bugman | 2012-09-25 15:01:37 +0200 (Tue, 25 Sep 2012) | 3 lines

All overfit_deselect() methods now accept and use the verbose argument.
........
r17559 | bugman | 2012-09-25 15:06:25 +0200 (Tue, 25 Sep 2012) | 3 lines

The overfit_deselect() printouts are now regularised and match the model-free printouts.
........
r17560 | bugman | 2012-09-25 15:18:23 +0200 (Tue, 25 Sep 2012) | 6 lines

Small change to the sphere model model-free test suite data.

The trptophan indole data is now merged into the last residue (a glycine) to catch bug #20197
(https://gna.org/bugs/?20197).
........
r17561 | bugman | 2012-09-25 15:21:43 +0200 (Tue, 25 Sep 2012) | 5 lines

Modified the Mf.test_dauvergne_protocol system test to catch bug #20197 (https://gna.org/bugs/?20197).

The sphere test data NE1 and HE1 data is now being used in this system test, triggering the bug.
........
r17562 | bugman | 2012-09-25 16:37:03 +0200 (Tue, 25 Sep 2012) | 3 lines

Relaxation data is no longer loaded by relax_data.read if the values and errors are both None.
........
r17563 | bugman | 2012-09-25 16:41:25 +0200 (Tue, 25 Sep 2012) | 3 lines

Fix for the N_state_model.test_monte_carlo_sims due to the changed sphere.pdb test suite file.
........
r17564 | bugman | 2012-09-25 16:42:04 +0200 (Tue, 25 Sep 2012) | 3 lines

Fix to the Dasha system test needed for the changes to the relax_data.read user function.
........
r17565 | bugman | 2012-09-25 17:02:49 +0200 (Tue, 25 Sep 2012) | 3 lines

Fix for the Relax_data.test_read unit tests for the relax_data.read user function changes.
........
r17566 | bugman | 2012-09-25 17:07:18 +0200 (Tue, 25 Sep 2012) | 3 lines

Fix for the Relax_data.test_delete system test for the changes to the relax_data.read user function.
........
r17567 | bugman | 2012-09-25 18:46:03 +0200 (Tue, 25 Sep 2012) | 6 lines

Fix for bug #20197 (https://gna.org/bugs/?20197) - the PyMOL and Molmol macro failure.

The macro creation now only operates on spins called 'N' and assumes these are the backbone
nitrogens. The sidechain tryptophan indole NH data will need to be detected and added later.
........
r17568 | bugman | 2012-09-27 10:03:08 +0200 (Thu, 27 Sep 2012) | 3 lines

Lots of editing of the model-free GUI section of the user manual.
........
r17569 | bugman | 2012-09-27 10:04:04 +0200 (Thu, 27 Sep 2012) | 3 lines

Fix for the comment on the 'Export' button in the BMRB export window.
........
r17570 | bugman | 2012-09-27 10:04:22 +0200 (Thu, 27 Sep 2012) | 3 lines

Removed some debugging printouts.
........
r17571 | bugman | 2012-09-27 10:05:14 +0200 (Thu, 27 Sep 2012) | 3 lines

Added star versions of the standard spin IDs to the spin ID GUI element (e.g. '@N*', '@H*').
........
r17572 | bugman | 2012-09-27 10:07:03 +0200 (Thu, 27 Sep 2012) | 6 lines

The CSA setting in the model-free auto GUI analysis now defaults to the '@N*' spin ID.

Previously no spin ID was being used so that the protons where also having their CSA values set to
that of the nitrogens. Now the execution checking code skips the proton CSA check.
........
r17573 | bugman | 2012-09-27 10:08:12 +0200 (Thu, 27 Sep 2012) | 3 lines

Fixes for the checks in the Mf.test_mf_auto_analysis() GUI test for the recent test suite data changes.
........
r17574 | bugman | 2012-09-27 16:14:47 +0200 (Thu, 27 Sep 2012) | 6 lines

Removed the 'force flag' text from the RelaxWarning messages output by the bruker.read user function.

The force flag arguments of the generic_fns.mol_res_spin.name_spin() and
generic_fns.mol_res_spin.set_spin_isotope() functions can now be set to None to suppress the text.
........
r17575 | bugman | 2012-09-27 16:29:40 +0200 (Thu, 27 Sep 2012) | 7 lines

Fix for bug #20201 (https://gna.org/bugs/?20201).

The bruker.read user function can now handle the situation where multiple spins per residue are
already loaded prior to the user function call. The isotope value from the DC file is now
translated to the element name and this is used as part of the spin ID string.
........
r17576 | bugman | 2012-09-27 19:19:13 +0200 (Thu, 27 Sep 2012) | 3 lines

Some changes in preparation for Python 3.
........
r17577 | bugman | 2012-09-28 10:02:02 +0200 (Fri, 28 Sep 2012) | 3 lines

Fix for a fatal bug introduced in the last revision (r17576).
........
r17578 | bugman | 2012-09-28 10:49:08 +0200 (Fri, 28 Sep 2012) | 5 lines

Removed all of the xrange() calls from the system tests as these are not necessary.

This is in preparation for Python 3.
........
r17579 | bugman | 2012-09-28 10:55:55 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparation - changed the import of SystemTestCase to use the absolute module path.
........
r17580 | bugman | 2012-09-28 10:57:54 +0200 (Fri, 28 Sep 2012) | 3 lines

Python 3 preparation - the test_suite.system_tests package now uses the absolute module path for imports.
........

2012-10-16 08:25:21 Tree
[r17830] by bugman

Merged revisions 17542 via svnmerge from
svn+ssh://bugman@.../svn/relax/trunk

........
r17542 | bugman | 2012-09-21 12:04:23 +0200 (Fri, 21 Sep 2012) | 6 lines

Merged the CHANGES file from the relax 2.1.1 tag back to the trunk.

The command used was:
svn merge -r17540:17541 svn+ssh://bugman@.../svn/relax/tags/2.1.1
........

2012-10-16 08:24:13 Tree
[r17829] by bugman

Merged revisions 17540 via svnmerge from
svn+ssh://bugman@.../svn/relax/trunk

........
r17540 | bugman | 2012-09-21 11:51:25 +0200 (Fri, 21 Sep 2012) | 6 lines

Fix for the SVN log converter script for the relax release process.

All SVN messages beginning with "Changed" were being skipped. The skipping of the "Changed paths:"
SVN log lines is now more explicit.
........

2012-10-16 08:23:50 Tree
[r17828] by bugman

Merged revisions 17391-17538 via svnmerge from
svn+ssh://bugman@.../svn/relax/trunk

........
r17391 | bugman | 2012-08-30 11:02:04 +0200 (Thu, 30 Aug 2012) | 3 lines

Added a paragraph to the model-free chapter of the user manual explaining the J(w) equation forms.
........
r17392 | bugman | 2012-08-30 11:03:23 +0200 (Thu, 30 Aug 2012) | 3 lines

Fixed some citations in the newly introduced model-free J(w) paragraph.
........
r17393 | bugman | 2012-08-30 11:13:54 +0200 (Thu, 30 Aug 2012) | 3 lines

Added a LaTeX label to the NOE chapter of the user manual.
........
r17394 | bugman | 2012-08-30 11:14:21 +0200 (Thu, 30 Aug 2012) | 3 lines

Fixes for the referencing in the J(w) mapping chapter of the user manual.
........
r17395 | bugman | 2012-08-30 16:40:40 +0200 (Thu, 30 Aug 2012) | 3 lines

Small description edit for the relax_data.temp_control user function.
........
r17396 | bugman | 2012-08-30 16:42:48 +0200 (Thu, 30 Aug 2012) | 3 lines

Spell fix for the relax_data.temp_calibration user function description.
........
r17397 | bugman | 2012-08-30 16:49:41 +0200 (Thu, 30 Aug 2012) | 3 lines

Fix for the incomplete relax_data.temp_control user function description.
........
r17398 | bugman | 2012-08-30 16:50:46 +0200 (Thu, 30 Aug 2012) | 3 lines

Another fix for the relax_data.temp_control description.
........
r17399 | bugman | 2012-08-30 17:43:09 +0200 (Thu, 30 Aug 2012) | 3 lines

Added the Viles et al., 2001 reference.
........
r17400 | bugman | 2012-08-30 18:07:51 +0200 (Thu, 30 Aug 2012) | 5 lines

Added a new section called 'From spectra to peak intensities' to the Rx fitting chapter of the manual.

This adds a number of recommendations for high quality relaxation rates.
........
r17401 | bugman | 2012-08-30 18:11:27 +0200 (Thu, 30 Aug 2012) | 3 lines

The NOE chapter now points to the recommendations in the Rx fitting chapter.
........
r17402 | bugman | 2012-08-30 18:11:49 +0200 (Thu, 30 Aug 2012) | 3 lines

Added the nth package for the user manual LaTeX compilation.
........
r17403 | bugman | 2012-08-31 22:05:56 +0200 (Fri, 31 Aug 2012) | 6 lines

Bug fix for the loading of peak intensities via spectrum.read_intensities.

The user function could not be applied twice, preventing the loading of data from different spin
systems such as Trp indole NH data.
........
r17404 | bugman | 2012-08-31 22:16:37 +0200 (Fri, 31 Aug 2012) | 6 lines

Bug fix for the reading of Sparky peak lists.

Spin names with numbers at the end were not being correctly identified. This fix allows Trp indole
NE1-HE1 data to be loaded.
........
r17405 | bugman | 2012-08-31 23:35:22 +0200 (Fri, 31 Aug 2012) | 3 lines

Allowed the raggedbottom LaTeX setting as this is better for the screenshot layout in the user manual.
........
r17406 | bugman | 2012-08-31 23:36:07 +0200 (Fri, 31 Aug 2012) | 3 lines

Added some Sparky info to the Rx curve-fitting chapter of the user manual.
........
r17407 | bugman | 2012-08-31 23:36:17 +0200 (Fri, 31 Aug 2012) | 3 lines

Added a section label.
........
r17408 | bugman | 2012-08-31 23:42:01 +0200 (Fri, 31 Aug 2012) | 5 lines

Added a step-by-step tutorial for the GUI NOE auto-analysis to the user manual.

This includes 22 screenshots of all the steps!
........
r17409 | bugman | 2012-08-31 23:53:41 +0200 (Fri, 31 Aug 2012) | 3 lines

Modified the NOE sample script to include Trp indole NH data.
........
r17410 | bugman | 2012-09-01 10:09:08 +0200 (Sat, 01 Sep 2012) | 6 lines

Added some Trp peak data (backbone and indole N) to the Sparky steady-state NOE peak lists.

This is in preparation for the modification of the NOE system test to catch bug #20119
(https://gna.org/bugs/index.php?20119).
........
r17411 | bugman | 2012-09-01 10:17:30 +0200 (Sat, 01 Sep 2012) | 5 lines

Modified the NOE system test to test the usage of Trp indole 15N data.

This is to catch bug #20119 (https://gna.org/bugs/index.php?20119).
........
r17412 | bugman | 2012-09-01 10:18:22 +0200 (Sat, 01 Sep 2012) | 5 lines

Significant update of the NOE chapter of the user manual.

The sample script used in this chapter was incredibly out of date!
........
r17413 | bugman | 2012-09-01 11:05:16 +0200 (Sat, 01 Sep 2012) | 3 lines

Lots of editing of the NOE chapter of the user manual.
........
r17414 | bugman | 2012-09-01 11:20:30 +0200 (Sat, 01 Sep 2012) | 3 lines

Modified the NOE system test to catch bug #20120 (https://gna.org/bugs/?20120).
........
r17415 | bugman | 2012-09-01 11:21:54 +0200 (Sat, 01 Sep 2012) | 3 lines

Removed a debugging print out.
........
r17416 | bugman | 2012-09-01 11:27:10 +0200 (Sat, 01 Sep 2012) | 6 lines

Fix for bug #20120 (https://gna.org/bugs/?20120), the bad Grace plots with multiple spin types.

The grace data assembly function was not setting the correct index for when a spin type changes to a
preexisting type.
........
r17417 | bugman | 2012-09-01 13:13:01 +0200 (Sat, 01 Sep 2012) | 6 lines

Bug fix for the generic_fns.grace.get_data() function.

This was just recently introduced and was triggered by the Relax_fit.test_bug_12670_12679 system
test.
........
r17418 | bugman | 2012-09-01 14:58:49 +0200 (Sat, 01 Sep 2012) | 5 lines

Created the GUI wizard _apply() method for executing the current page's _apply() method.

This is for the GUI tests to simulate a click on the 'Apply' button.
........
r17419 | bugman | 2012-09-01 15:13:43 +0200 (Sat, 01 Sep 2012) | 5 lines

The spectrum.read_intensities user function now prints out a list of the intensities read in.

This is for better user feedback as to what the user function has actually done.
........
r17420 | bugman | 2012-09-01 15:14:32 +0200 (Sat, 01 Sep 2012) | 3 lines

The NOE auto-analysis GUI test now checks the support for Trp indole N data as well.
........
r17421 | bugman | 2012-09-03 10:19:35 +0200 (Mon, 03 Sep 2012) | 3 lines

Fix for the spin.create user function documentation - the prompt examples were wrong.
........
r17422 | bugman | 2012-09-03 10:23:39 +0200 (Mon, 03 Sep 2012) | 3 lines

Created a directory for screenshots of the spin viewer window operation.
........
r17423 | bugman | 2012-09-03 10:48:57 +0200 (Mon, 03 Sep 2012) | 3 lines

Changed the "View->Spin view" menu item to "View->Spin viewer".
........
r17424 | bugman | 2012-09-03 11:11:48 +0200 (Mon, 03 Sep 2012) | 3 lines

Shifted the spin viewer screenshots into their own directory.
........
r17425 | bugman | 2012-09-03 11:16:01 +0200 (Mon, 03 Sep 2012) | 5 lines

Redesign of the data model chapter of the user manual.

This includes the moving of all of the spin viewer window text and screenshots from the NOE chapter.
........
r17426 | bugman | 2012-09-03 11:28:42 +0200 (Mon, 03 Sep 2012) | 3 lines

Added screenshots of the spin viewer spin loading wizard sequence.read page.
........
r17427 | bugman | 2012-09-03 11:43:36 +0200 (Mon, 03 Sep 2012) | 6 lines

More rearrangements of data model and NOE chapters of the relax manual.

The GUI spin deselection part of the NOE chapter has been shifted into the data model chapter. And
the GUI loading of spins from a sequence file section has been completed.
........
r17428 | bugman | 2012-09-03 12:06:00 +0200 (Mon, 03 Sep 2012) | 6 lines

Defined a new set of LaTeX commands for prompt/script/GUI strings and elements for the user manual.

These will be used to regularize the text throughout the manual, as this is currently quite mixed
up.
........
r17429 | bugman | 2012-09-03 12:16:00 +0200 (Mon, 03 Sep 2012) | 3 lines

Added some more LaTeX functions for formatting consistency.
........
r17430 | bugman | 2012-09-03 13:29:09 +0200 (Mon, 03 Sep 2012) | 3 lines

Removed some '()' text from the end of the user functions in the user function documentation.
........
r17431 | bugman | 2012-09-03 14:13:37 +0200 (Mon, 03 Sep 2012) | 6 lines

Improved the consistency on the user manual by using the new LaTeX commands.

These changes are throughout the manual and affect all the text of user functions, menu items,
prompt examples, GUI elements, files, directories, etc.
........
r17432 | bugman | 2012-09-03 14:22:16 +0200 (Mon, 03 Sep 2012) | 3 lines

Clean up of a paragraph of the data model chapter of the user manual.
........
r17433 | bugman | 2012-09-03 14:24:13 +0200 (Mon, 03 Sep 2012) | 6 lines

Changed the order of the Rx curve-fitting and NOE chapters in the relax manual.

This is because the NOE chapter references passages from the Rx curve-fitting chapter, so it's more
logical to have the Rx curve-fitting chapter first.
........
r17434 | bugman | 2012-09-03 14:51:11 +0200 (Mon, 03 Sep 2012) | 3 lines

Fix for the Farrow et al., 1995 DOI number.
........
r17435 | bugman | 2012-09-03 15:03:36 +0200 (Mon, 03 Sep 2012) | 3 lines

Added the Fushman et al., 1998 reference.
........
r17436 | bugman | 2012-09-03 15:06:25 +0200 (Mon, 03 Sep 2012) | 3 lines

Added the other consistency testing references to the citation chapter of the manual.
........
r17437 | bugman | 2012-09-03 15:06:52 +0200 (Mon, 03 Sep 2012) | 3 lines

Added a LaTeX label to the J(w) mapping chapter.
........
r17438 | bugman | 2012-09-03 15:13:16 +0200 (Mon, 03 Sep 2012) | 3 lines

Activated the consistency testing chapter of the user manual.
........
r17439 | bugman | 2012-09-03 15:13:38 +0200 (Mon, 03 Sep 2012) | 3 lines

Large edits of the consistency testing chapter of the user manual.
........
r17440 | bugman | 2012-09-03 17:37:14 +0200 (Mon, 03 Sep 2012) | 3 lines

Added trp indole NH loading into the relaxation curve-fitting sample script.
........
r17441 | bugman | 2012-09-03 22:34:03 +0200 (Mon, 03 Sep 2012) | 6 lines

Editing of the relaxation curve-fitting and NOE chapters of the user manual.

This is to synchronise the format of the two chapters, and includes the swapping of text between
them.
........
r17442 | bugman | 2012-09-03 23:07:07 +0200 (Mon, 03 Sep 2012) | 3 lines

Small edits of the relax data model chapter of the user manual.
........
r17443 | bugman | 2012-09-04 11:52:07 +0200 (Tue, 04 Sep 2012) | 3 lines

Added some Grace plots from an NOE analysis for use in the user manual.
........
r17444 | bugman | 2012-09-04 16:51:24 +0200 (Tue, 04 Sep 2012) | 5 lines

Added a tonne of GUI screenshots of an R1 analysis.

These will be used in the relaxation curve-fitting chapter of the user manual.
........
r17445 | bugman | 2012-09-04 16:51:25 +0200 (Tue, 04 Sep 2012) | 7 lines

Large expansion and lots of editing of the relaxation curve-fitting chapter of the user manual.

The GUI section has been added which includes step-by-step instructions on how to use relax,
illustrated with screenshots at each step. There has been general editing of the whole of the
chapter as well.
........
r17446 | bugman | 2012-09-04 16:52:00 +0200 (Tue, 04 Sep 2012) | 3 lines

Editing of the relax data model chapter of the user manual.
........
r17447 | bugman | 2012-09-04 16:52:34 +0200 (Tue, 04 Sep 2012) | 3 lines

The old R1 and R2 analysis screenshots have been shifted to the intro chapter.
........
r17448 | bugman | 2012-09-04 16:53:06 +0200 (Tue, 04 Sep 2012) | 3 lines

Some editing of the NOE chapter of the relax user manual.
........
r17449 | bugman | 2012-09-04 17:11:43 +0200 (Tue, 04 Sep 2012) | 3 lines

Fix for bug #20133 (https://gna.org/bugs/?20133) - this was simply a missing import.
........
r17450 | bugman | 2012-09-05 12:12:02 +0200 (Wed, 05 Sep 2012) | 3 lines

Editing of the nmrPipe script in the Rx curve-fitting chapter of the manual.
........
r17451 | semor | 2012-09-05 13:52:36 +0200 (Wed, 05 Sep 2012) | 6 lines

Added some text and a reference to the consistency testing chapter.

This follows a discussion started by Edward d'Auvergne at:
https://mail.gna.org/public/relax-devel/2012-09/msg00019.html
(Message-id: <CAED9pY8XhmmvyfBS7mZA8XZ=4mJZe9TuGjARHoV2tVcjjV9SrQ@...>)
........
r17452 | bugman | 2012-09-05 13:52:45 +0200 (Wed, 05 Sep 2012) | 5 lines

Bug fix for the creation of 2D graphs via grace.write for when many data sets exist.

The algorithm for setting the Grace symbol number to be between 1 and 10 was broken!
........
r17453 | semor | 2012-09-05 14:16:17 +0200 (Wed, 05 Sep 2012) | 8 lines

Added text to detail the usage of the consistency testing script.

This text was modified from the corresponding text for jw_mapping.

This follows a discussion started by Edward d'Auvergne at:
https://mail.gna.org/public/relax-devel/2012-09/msg00019.html
(Message-id: <CAED9pY8XhmmvyfBS7mZA8XZ=4mJZe9TuGjARHoV2tVcjjV9SrQ@...>)
........
r17454 | bugman | 2012-09-05 14:18:38 +0200 (Wed, 05 Sep 2012) | 3 lines

Deletion of the relax version LaTeX file - this is automatically created anyway.
........
r17455 | semor | 2012-09-05 14:20:52 +0200 (Wed, 05 Sep 2012) | 8 lines

Added the DOI to reference Morin11 and fixed indentation.

10.1016/j.pnmrs.2010.12.003

This follows a comment by Edward d'Auvergne at:
https://mail.gna.org/public/relax-devel/2012-09/msg00022.html
(Message-id: <CAED9pY-ikjPvGaRPADHRJpLGFGnoeu+yNp5D1hLLm1U70maAwA@...>)
........
r17456 | semor | 2012-09-05 14:25:48 +0200 (Wed, 05 Sep 2012) | 3 lines

Made some corrections to the formatting of math symbols in Latex.
........
r17457 | semor | 2012-09-05 14:48:42 +0200 (Wed, 05 Sep 2012) | 8 lines

Corrected the bibliography entries whih were still in plain text and not as a Latex \cite call...

Also renamed the MorinGagne09 entry to MorinGagne09a as there is now also MorinGagne09b.

This was proposed by Edward d'Auvergne in a post at:
https://mail.gna.org/public/relax-devel/2012-09/msg00025.html
(Message-id: <CAED9pY9uKUd_OesCvDLqv2fGPoLDHB4ftrbW1-y6df4oQtbWyg@...>)
........
r17458 | semor | 2012-09-05 15:08:57 +0200 (Wed, 05 Sep 2012) | 6 lines

Added a directory for placing consistency testing graphics.

This follows a discussion started by Edward d'Auvergne at:
https://mail.gna.org/public/relax-devel/2012-09/msg00019.html
(Message-id: <CAED9pY8XhmmvyfBS7mZA8XZ=4mJZe9TuGjARHoV2tVcjjV9SrQ@...>)
........
r17459 | semor | 2012-09-05 15:23:32 +0200 (Wed, 05 Sep 2012) | 10 lines

Added a modified version of figure 1 from Morin and Gagne (JBNMR, 2009).

http://dx.doi.org/10.1007/s10858-009-9381-4

File formats are .agr (xmgrace), eps (gzipped), and png.

This follows a discussion started by Edward d'Auvergne at:
https://mail.gna.org/public/relax-devel/2012-09/msg00019.html
(Message-id: <CAED9pY8XhmmvyfBS7mZA8XZ=4mJZe9TuGjARHoV2tVcjjV9SrQ@...>)
........
r17460 | semor | 2012-09-05 15:33:12 +0200 (Wed, 05 Sep 2012) | 6 lines

Added some text to describe the consistency testing example figure.

This follows a discussion started by Edward d'Auvergne at:
https://mail.gna.org/public/relax-devel/2012-09/msg00019.html
(Message-id: <CAED9pY8XhmmvyfBS7mZA8XZ=4mJZe9TuGjARHoV2tVcjjV9SrQ@...>)
........
r17461 | semor | 2012-09-05 16:00:48 +0200 (Wed, 05 Sep 2012) | 12 lines

Added more text to describe the consistency testing approach.

Also includes a very basic point by point protocol for consistency testing.

This was proposed by by Edward d'Auvergne at:
https://mail.gna.org/public/relax-devel/2012-09/msg00028.html
(Message-id: <CAED9pY_YTDj8SX8crQu9on4LqA=pLzQwwyaz9kMLWD96xg-d0g@...>)

This also follows a discussion started by Edward d'Auvergne at:
https://mail.gna.org/public/relax-devel/2012-09/msg00019.html
(Message-id: <CAED9pY8XhmmvyfBS7mZA8XZ=4mJZe9TuGjARHoV2tVcjjV9SrQ@...>)
........
r17462 | semor | 2012-09-05 17:02:41 +0200 (Wed, 05 Sep 2012) | 12 lines

Reverted r17456.

This follows a remark by Edward d'Auvergne at:
https://mail.gna.org/public/relax-devel/2012-09/msg00029.html
(Message-id: <CAED9pY9jMXUyUsRv_FDcoen-_3SOu3oyrYK_egyw89dgH5-ESQ@...>)

The command used was:
svn merge -r17456:17455 .

Then, the file was manually adjusted since there were apparently conflicts with svn...
........
r17463 | semor | 2012-09-05 17:09:25 +0200 (Wed, 05 Sep 2012) | 13 lines

Added the bounding box and a centerline command to the code for the figure for consistency testing...

This follows two remark by Edward d'Auvergne at:

https://mail.gna.org/public/relax-devel/2012-09/msg00030.html
(Message-id: <CAED9pY_DzNvTcCjD0NzzkW_Zy-xdHrUe4q6ooqrSF17ySnj_Tg@...>)

and

https://mail.gna.org/public/relax-devel/2012-09/msg00032.html
(Message-id: <CAED9pY-aymMGvmo=JMC_nWYSeLd-HAsCirv7so5P3OhJBNFY5Q@...>)
........
r17464 | semor | 2012-09-05 17:15:23 +0200 (Wed, 05 Sep 2012) | 3 lines

Made a small correction to a reference such that a superscript is correctly displayed.
........
r17465 | semor | 2012-09-05 21:07:58 +0200 (Wed, 05 Sep 2012) | 7 lines

Fixed a bibliography entry label problem.

This was spotted by Edward d'Auvergne in a post at:
https://mail.gna.org/public/relax-devel/2012-09/msg00040.html
(Message-id: <CAED9pY-pvtpE69tqXqb30fj9aWL1_wU8yaM4u44rMXY1LEQbag@...>)
........
r17466 | semor | 2012-09-05 21:11:24 +0200 (Wed, 05 Sep 2012) | 6 lines

Fixed the bounding box for the consistency testing figure and also fixed some Latex unfriendly code...

Problems were spotted by Edward d'Auvergne in a post at:
https://mail.gna.org/public/relax-devel/2012-09/msg00039.html
(Message-id: <CAED9pY9pucoVrGzDvKs0u6hdUb94-Db8ixvno7MFN1QZsQDonA@...>)
........
r17467 | bugman | 2012-09-06 08:17:08 +0200 (Thu, 06 Sep 2012) | 3 lines

Fixed the newlines in the sample script in the consistency testing chapter.
........
r17468 | bugman | 2012-09-06 10:59:01 +0200 (Thu, 06 Sep 2012) | 7 lines

Editing of the "Values, gradients, and Hessians" chapter of the user manual to make it fit better.

The context of this chapter has been specified by changing the title to "Optimisation of relaxation
data -- values, gradients, and Hessians" and the intro text has been updated. As this chapter is no
longer straight after the model-free chapter, this is needed.
........
r17469 | bugman | 2012-09-06 11:19:43 +0200 (Thu, 06 Sep 2012) | 3 lines

Editing and a number of fixes/cleanups for the consistency testing chapter of the user manual.
........
r17470 | bugman | 2012-09-06 11:30:04 +0200 (Thu, 06 Sep 2012) | 3 lines

Small edits of the consistency testing figure caption in the relax user manual.
........
r17471 | bugman | 2012-09-06 11:47:49 +0200 (Thu, 06 Sep 2012) | 3 lines

Big clean up of the Bibtex bibliography file for the relax user manual.
........
r17472 | semor | 2012-09-06 11:48:22 +0200 (Thu, 06 Sep 2012) | 6 lines

Added some text to explain why test only J(0) is discussed whereas the script also calculated F_R2 and F_eta.

This was suggested by Edward d'Auvergne in a post at:
https://mail.gna.org/public/relax-devel/2012-09/msg00044.html
(Message-id: <CAED9pY9U46ga6_j245peX1ETNZc_Lw0f5cz+5xx5rGVhee29YA@...>)
........
r17473 | bugman | 2012-09-06 16:07:04 +0200 (Thu, 06 Sep 2012) | 5 lines

A few small edits of the relaxation curve-fitting chapter.

This is to reinforce the exact time of the relaxation time period.
........
r17474 | bugman | 2012-09-06 17:14:43 +0200 (Thu, 06 Sep 2012) | 3 lines

Re-added Dominique Marion's solvent suppression to the NMRPipe script in the curve-fitting chapter.
........
r17475 | bugman | 2012-09-07 08:59:17 +0200 (Fri, 07 Sep 2012) | 5 lines

Set up the Bruker Dynamics Center system tests as GUI tests.

This is in preparation for catching bug #20152 (https://gna.org/bugs/?20152).
........
r17476 | bugman | 2012-09-07 09:29:57 +0200 (Fri, 07 Sep 2012) | 5 lines

Created the test_bug_20152_read_dc_file() GUI test for catching bug #20152 (https://gna.org/bugs/?20152).

This includes truncated data taken from the bug report (with data for only the first 3 residues).
........
r17477 | bugman | 2012-09-07 10:21:46 +0200 (Fri, 07 Sep 2012) | 5 lines

The bruker.read user function now throws a RelaxError when old PDC files are detected.

This is a partial fix for bug #20152 (https://gna.org/bugs/?20152).
........
r17478 | bugman | 2012-09-07 10:46:18 +0200 (Fri, 07 Sep 2012) | 6 lines

Bug fix for the creation of the user function GUI pages - the (a)synchronous arg is now observed.

This argument was being ignored, which in some wizards was causing user function calls to be
asynchronous. This can result in racing related crashes!
........
r17479 | bugman | 2012-09-07 10:48:15 +0200 (Fri, 07 Sep 2012) | 9 lines

Bug fix for the execution of wizard pages - the execution status is now observed.

This fixes bug #20152 (https://gna.org/bugs/?20152).

The problem was that the execution status was being lost in the protected_exec() function. However
as relax errors are caught in the GUI interpreter anyway and the status is returned normally, the
protected_exec() wrapper was removed.
........
r17480 | bugman | 2012-09-07 11:03:10 +0200 (Fri, 07 Sep 2012) | 5 lines

Modified the test_bug_20152_read_dc_file() GUI test to catch the RelaxError!

This error is because of the old PDC format.
........
r17481 | bugman | 2012-09-17 10:51:37 +0200 (Mon, 17 Sep 2012) | 3 lines

Comment spelling fix.
........
r17482 | bugman | 2012-09-17 13:35:40 +0200 (Mon, 17 Sep 2012) | 3 lines

Changed the RelaxError for missing relaxation times in the relaxation curve-fitting analyses.
........
r17483 | bugman | 2012-09-17 13:58:27 +0200 (Mon, 17 Sep 2012) | 6 lines

Fix for bug #20173 (https://gna.org/bugs/?20173).

The palmer.create user function should have been checking that the diffusion tensor had been
initialised. This is now being performed.
........
r17484 | bugman | 2012-09-17 16:44:01 +0200 (Mon, 17 Sep 2012) | 6 lines

Proper bug fix for storing the execution status of wizard and user function pages.

This allows the test suite to pass again. The execution status is now properly returned from the
wizard pages run synchronously (and always set to True for asynchronous calls).
........
r17485 | bugman | 2012-09-17 18:05:56 +0200 (Mon, 17 Sep 2012) | 6 lines

Expanded the spin ID list for the structure.load_spins user function.

This now includes the spins "@N", "@NE1", "@C", "@H", "@O", "@P", ":A@...", ":A@...", ":G@...",
":G@...", ":C@...", ":C@...", ":U@...", ":U@...", ":U@...".
........
r17486 | bugman | 2012-09-18 10:51:49 +0200 (Tue, 18 Sep 2012) | 3 lines

MS Windows fix - the NOE system and GUI tests are now less strict in checking the errors.
........
r17487 | bugman | 2012-09-18 12:11:17 +0200 (Tue, 18 Sep 2012) | 6 lines

Updated the scripting section of the intro chapter of the user manual for non-technical users.

See http://www.mail-archive.com/relax-users@.../msg01253.html and bug #20174
(http://gna.org/bugs/?20174).
........
r17488 | bugman | 2012-09-18 15:19:03 +0200 (Tue, 18 Sep 2012) | 6 lines

Bug fix for the repetition of Monte Carlo simulations in the relaxation curve-fitting analyses.

This is in the specific analysis API, so will allow all analysis types to repeat Monte Carlo
simulations for error analysis.
........
r17489 | bugman | 2012-09-18 16:15:01 +0200 (Tue, 18 Sep 2012) | 6 lines

Created the new generic_fns.result_files for standardising the handling of results files.

This fixes the bug where results files are repetitively added to the list. All of the code touching
cdp.result_files now uses this module instead.
........
r17490 | bugman | 2012-09-18 18:15:51 +0200 (Tue, 18 Sep 2012) | 6 lines

Window ordering bug fix for the user function windows launched from the spin viewer window.

The spin viewer window no longer hides behind the main relax window after the launch of the user
function.
........
r17491 | bugman | 2012-09-18 19:23:14 +0200 (Tue, 18 Sep 2012) | 5 lines

Added @HE1 to the spin ID list of the structure.load_spins user function.

This is only seen in the GUI.
........
r17492 | bugman | 2012-09-18 19:44:54 +0200 (Tue, 18 Sep 2012) | 6 lines

Updated the model-free GUI auto-analysis buttons for multiple spin name types.

The @H and @N names in the wizards behind the 'Dipolar relaxation', 'X isotope', and 'H isotope'
buttons have been changed to @H* and @N* to support Trp NE1-HE1 atom pairs.
........
r17493 | bugman | 2012-09-19 09:19:54 +0200 (Wed, 19 Sep 2012) | 5 lines

Fix for bug #20181 - the GUI sequence editor window TypeError problem.

This is the fix for the bug reported at https://gna.org/bugs/?20181.
........
r17494 | bugman | 2012-09-19 09:35:49 +0200 (Wed, 19 Sep 2012) | 3 lines

Improvements to the descriptions of the structure.read_pdb user function arguments.
........
r17495 | bugman | 2012-09-19 09:37:07 +0200 (Wed, 19 Sep 2012) | 3 lines

Improvements to the descriptions of the structure.read_xyz user function arguments.
........
r17496 | bugman | 2012-09-19 09:43:30 +0200 (Wed, 19 Sep 2012) | 7 lines

Fix for bug #20182 (https://gna.org/bugs/?20182) - the sequence element window ordering issue.

The sequence element window now has the parent wx.Window element set. This prevents the main relax
window from being set as the parent and hence coming to the front after the sequence element window
is launched from a user function window.
........
r17497 | bugman | 2012-09-19 10:02:13 +0200 (Wed, 19 Sep 2012) | 6 lines

Fix for bug #20183 (https://gna.org/bugs/?20183) - the failure of the sequence editor window.

The problem was that fields which could be either single values or lists (or tuples) of values were
not properly handled.
........
r17498 | bugman | 2012-09-19 10:53:11 +0200 (Wed, 19 Sep 2012) | 5 lines

Modified the operation of the sequence GUI element to have access to the sequence editor window.

This is to allow this GUI element to be blasted within the test suite.
........
r17499 | bugman | 2012-09-19 10:55:30 +0200 (Wed, 19 Sep 2012) | 7 lines

Created the User_functions.test_structure_pdb_read GUI test for checking the sequence editor window.

This new user function GUI testing class is to be used for testing out the special GUI elements not
invoked within the unit testing. The test_structure_pdb_read() test specifically shows a number of
failures of the sequence editor window.
........
r17500 | bugman | 2012-09-19 11:22:35 +0200 (Wed, 19 Sep 2012) | 3 lines

Fixes for the User_functions.test_structure_pdb_read() GUI test.
........
r17501 | bugman | 2012-09-19 11:24:21 +0200 (Wed, 19 Sep 2012) | 7 lines

Fix for bug #20184 (https://gna.org/bugs/?20184).

The behaviour of the gui.string_conv.gui_to_int() and related functions has changed in the last few
months and the Sequence_window() GUI element has not changed to match. This has been fixed and the
User_functions.test_structure_pdb_read() GUI test now passes.
........
r17502 | bugman | 2012-09-19 11:27:52 +0200 (Wed, 19 Sep 2012) | 5 lines

Modified the User_functions.test_structure_pdb_read() GUI test to catch another bug.

This is a bug recently introduced with the fixes to the other sequence editor GUI window problems.
........
r17503 | bugman | 2012-09-19 11:38:56 +0200 (Wed, 19 Sep 2012) | 3 lines

Small fix for the User_functions.test_structure_pdb_read() GUI test.
........
r17504 | bugman | 2012-09-19 11:40:28 +0200 (Wed, 19 Sep 2012) | 6 lines

Another bug fix for the sequence GUI editor window.

This bug was being triggered by the User_functions.test_structure_pdb_read() GUI test which now
passes.
........
r17505 | bugman | 2012-09-19 14:16:04 +0200 (Wed, 19 Sep 2012) | 6 lines

Fix for bug #20177 (https://gna.org/bugs/?20177).

This was simply a lower precision OS/Python/numpy combination causing a test suite failure - there
are no practical effects and only the precision of the system/GUI test has been lowered.
........
r17506 | bugman | 2012-09-19 14:55:33 +0200 (Wed, 19 Sep 2012) | 5 lines

All of the GUI strings and text are now formatted with a small sans serif font in the user manual.

This is because in the GUI, a sans serif font is almost always used be default.
........
r17507 | bugman | 2012-09-19 14:57:03 +0200 (Wed, 19 Sep 2012) | 6 lines

Updated the data model chapter of the user manual to cover the handling of protons.

This change includes the modification of the PDB reading screenshot to demonstrate the reading of a
specific model and the naming of the molecule.
........
r17508 | bugman | 2012-09-19 15:42:33 +0200 (Wed, 19 Sep 2012) | 6 lines

A number of updates and edits to the intro chapter of the user manual.

The model-free GUI screenshot has been shifted to the intro chapter in preparation for a full
tutorial with screenshots in the model-free chapter.
........
r17509 | bugman | 2012-09-19 15:43:04 +0200 (Wed, 19 Sep 2012) | 3 lines

Added some labelling to the infrastructure chapter of the user manual for referencing.
........
r17510 | bugman | 2012-09-19 15:49:35 +0200 (Wed, 19 Sep 2012) | 3 lines

A small edit to the intro chapter for the multi-processor operation and logging.
........
r17511 | bugman | 2012-09-19 16:19:47 +0200 (Wed, 19 Sep 2012) | 3 lines

Additions to the scripting section of the relaxation curve-fitting chapter of the user manual.
........
r17512 | bugman | 2012-09-19 16:57:35 +0200 (Wed, 19 Sep 2012) | 7 lines

Created a simple shell script to find duplicate titles in the relax user manual.

This is important for the HTML version of the manual as duplicated titles causes HTML pages to be
overwritten. For example all chapters, sections and subsections titled "Introduction" will load the
introduction.html file which will contain the text of the last section with that title!
........
r17513 | bugman | 2012-09-19 17:03:20 +0200 (Wed, 19 Sep 2012) | 3 lines

Improvements to the duplicate user manual title finding script.
........
r17514 | bugman | 2012-09-19 17:22:47 +0200 (Wed, 19 Sep 2012) | 3 lines

Fix for the duplicate title finding script - the LaTeX and HTML mode alternatives are no longer mixed up.
........
r17515 | bugman | 2012-09-19 17:25:16 +0200 (Wed, 19 Sep 2012) | 3 lines

The HTML files for the user manual now have longer names - this is needed for removing the duplicates.
........
r17516 | bugman | 2012-09-19 17:33:55 +0200 (Wed, 19 Sep 2012) | 5 lines

Elimination of all duplicated chapter, section and subsection titles in the user manual.

This fixes bug #20185 (https://gna.org/bugs/?20185).
........
r17517 | bugman | 2012-09-19 18:41:08 +0200 (Wed, 19 Sep 2012) | 5 lines

The graphics.fetch_icon() function argument 'format' can now be set to None.

This will return the file path without the extension.
........
r17518 | bugman | 2012-09-19 19:03:48 +0200 (Wed, 19 Sep 2012) | 3 lines

Fix for the graphics.fetch_icon() function for when no file format is specified.
........
r17519 | bugman | 2012-09-19 21:49:04 +0200 (Wed, 19 Sep 2012) | 6 lines

Removed the text '.eps.gz' from all of the LaTeX included graphics in the user manual.

This allows latex2html to select and use the PNG images instead, producing much better graphics for
the online manual (http://www.nmr-relax.com/manual/index.html).
........
r17520 | bugman | 2012-09-19 22:29:43 +0200 (Wed, 19 Sep 2012) | 5 lines

Fixes for the user function icons in the HTML version of the user manual.

These icons are now placed on the correct HTML page.
........
r17521 | bugman | 2012-09-19 22:30:27 +0200 (Wed, 19 Sep 2012) | 3 lines

Fixed a section titled 'Introduction' clashing with the intro chapter of the user manual.
........
r17522 | bugman | 2012-09-19 22:46:36 +0200 (Wed, 19 Sep 2012) | 5 lines

The latex2html compilation of the user manual now ignores the \bibitem{} commands.

This is needed for the HTML version of the user manual.
........
r17523 | bugman | 2012-09-19 22:47:29 +0200 (Wed, 19 Sep 2012) | 5 lines

The citations chapter is now included in the HTML version of the user manual.

For some reason, a file named 'cite.tex' cannot be handled by latex2html.
........
r17524 | bugman | 2012-09-20 11:41:19 +0200 (Thu, 20 Sep 2012) | 3 lines

Modified the dauvergne_protocol sample script to handle tryptophan indole NE1 data.
........
r17525 | bugman | 2012-09-20 12:08:11 +0200 (Thu, 20 Sep 2012) | 3 lines

Added a section label to the intro chapter of the user manual.
........
r17526 | bugman | 2012-09-20 12:09:59 +0200 (Thu, 20 Sep 2012) | 5 lines

Removed \verb from the \newcommand definitions as that is forbidden in LaTeX.

Now Python code is formatted using a small TT font.
........
r17527 | bugman | 2012-09-20 12:11:11 +0200 (Thu, 20 Sep 2012) | 6 lines

Removed the \pycodestar{} references in the development chapter.

This command has been deleted as \newcommand cannot have \verb inside it! The \pycodestar{x}
references have been changed to \verb*!x!.
........
r17528 | bugman | 2012-09-20 12:14:31 +0200 (Thu, 20 Sep 2012) | 3 lines

Spacing fix.
........
r17529 | bugman | 2012-09-20 12:21:46 +0200 (Thu, 20 Sep 2012) | 3 lines

Added a subsubsection label to the data model chapter of the user manual.
........
r17530 | bugman | 2012-09-20 16:34:18 +0200 (Thu, 20 Sep 2012) | 3 lines

Created the User_functions.test_value_set GUI test demonstrating the failure of the value.set user function.
........
r17531 | bugman | 2012-09-20 17:21:44 +0200 (Thu, 20 Sep 2012) | 5 lines

Fix for bug #20189 (https://gna.org/bugs/?20189).

The Sequence GUI element can no handle values of None.
........
r17532 | bugman | 2012-09-20 17:39:30 +0200 (Thu, 20 Sep 2012) | 6 lines

The GUI model-free auto-analysis dipole_pair.define field values have been changed again.

These now default to @N and @H, as @N* and @H* will connect @N spins to @HE1 spins and @H spins to
@NE1 spins!
........
r17533 | bugman | 2012-09-20 17:46:26 +0200 (Thu, 20 Sep 2012) | 5 lines

Fixed the dipole_pair.define user function calls in the dauvergne_protocol.py sample script.

This is a recently introduced problem only present in the trunk.
........
r17534 | bugman | 2012-09-20 20:32:32 +0200 (Thu, 20 Sep 2012) | 7 lines

Massive expansion of the model-free chapter of the user manual including script and GUI tutorials.

The model-free chapter now has step-by-step tutorials for both the prompt/script mode and GUI mode
for the new automated model-free protocol (the d'Auvergne protocol). This includes a large set of
screenshots for the GUI mode.
........
r17535 | bugman | 2012-09-20 20:47:09 +0200 (Thu, 20 Sep 2012) | 3 lines

Added a BMRB section to the end of the model-free chapter of the user manual.
........
r17536 | bugman | 2012-09-20 20:49:02 +0200 (Thu, 20 Sep 2012) | 3 lines

Removed the out of date and useless README file for the HTML version of the user manual.
........
r17537 | bugman | 2012-09-21 10:22:46 +0200 (Fri, 21 Sep 2012) | 3 lines

Added the use of the program 'nice' to the model-free GUI tutorial in the user manual.
........
r17538 | bugman | 2012-09-21 11:09:52 +0200 (Fri, 21 Sep 2012) | 6 lines

Modified the model-free optimisation final printout to be more multi-processor friendly.

The message saying that the optimised chi2 is an improvement or not now includes the spin ID string
if present. This is more informative for the multi-processor mpi4py printouts.
........

2012-10-16 08:19:57 Tree
[r17827] by bugman

Merged revisions 17378-17389 via svnmerge from
svn+ssh://bugman@.../svn/relax/trunk

........
r17378 | bugman | 2012-08-29 11:17:10 +0200 (Wed, 29 Aug 2012) | 3 lines

Added the Fushman et al., 1999 reference for consistency testing to the intro chapter of the user manual.
........
r17379 | bugman | 2012-08-29 11:29:30 +0200 (Wed, 29 Aug 2012) | 3 lines

Added EPS versions of the specific analysis graphics for use in the user manual.
........
r17380 | bugman | 2012-08-29 11:58:31 +0200 (Wed, 29 Aug 2012) | 3 lines

Small edit of the 'Citations' chapter of the relax user manual.
........
r17381 | bugman | 2012-08-29 11:59:17 +0200 (Wed, 29 Aug 2012) | 3 lines

Added the specific analysis graphics to the start of each chapter of the relax user manual.
........
r17382 | bugman | 2012-08-29 11:59:32 +0200 (Wed, 29 Aug 2012) | 3 lines

Expanded the size of the specific analysis graphics - mainly for use in the relax user manual.
........
r17383 | bugman | 2012-08-29 12:28:44 +0200 (Wed, 29 Aug 2012) | 3 lines

Added more high resolution graphics for use in the relax user manual.
........
r17384 | bugman | 2012-08-29 12:35:45 +0200 (Wed, 29 Aug 2012) | 3 lines

Some more high quality graphics.
........
r17385 | bugman | 2012-08-29 12:36:12 +0200 (Wed, 29 Aug 2012) | 3 lines

The relax data model chapter of the user manual now uses the higher quality graphics.
........
r17386 | bugman | 2012-08-29 12:36:38 +0200 (Wed, 29 Aug 2012) | 3 lines

Better figure layout in the NOE chapter of the user manual.
........
r17387 | bugman | 2012-08-29 15:33:21 +0200 (Wed, 29 Aug 2012) | 3 lines

Created an initial rough version of the RSDM chapter of the user manual.
........
r17388 | bugman | 2012-08-29 15:33:44 +0200 (Wed, 29 Aug 2012) | 3 lines

Added a label to the data model chapter of the user manual.
........
r17389 | bugman | 2012-08-29 16:46:41 +0200 (Wed, 29 Aug 2012) | 3 lines

Fixed a bunch of links in the development chapter of the user manual.
........

2012-10-16 08:16:32 Tree
[r17826] by bugman

Merged revisions 17367-17376 via svnmerge from
svn+ssh://bugman@.../svn/relax/trunk

........
r17367 | bugman | 2012-08-28 19:33:25 +0200 (Tue, 28 Aug 2012) | 3 lines

Added and fixed DOI numbers for many bibliographic entries.
........
r17368 | bugman | 2012-08-28 20:40:27 +0200 (Tue, 28 Aug 2012) | 5 lines

Added a tonne of DOI numbers to the relax user manual bibliography.

This will simplify accessing these references for the user.
........
r17369 | bugman | 2012-08-28 21:12:06 +0200 (Tue, 28 Aug 2012) | 3 lines

Expansion of the abbreviations chapter of the relax user manual.
........
r17370 | bugman | 2012-08-28 21:13:59 +0200 (Tue, 28 Aug 2012) | 3 lines

Added another abbreviation.
........
r17371 | bugman | 2012-08-28 22:05:23 +0200 (Tue, 28 Aug 2012) | 3 lines

Edits to the abbreviations chapter of the relax user manual.
........
r17372 | bugman | 2012-08-28 22:13:48 +0200 (Tue, 28 Aug 2012) | 3 lines

Small edits of the relax user manual.
........
r17373 | bugman | 2012-08-29 10:55:20 +0200 (Wed, 29 Aug 2012) | 5 lines

Shortened the Literature subsection of the intro chapter to point to the citations chapter.

This part of the user manual is now redundant.
........
r17374 | bugman | 2012-08-29 10:55:58 +0200 (Wed, 29 Aug 2012) | 3 lines

Added the Horne 2007 paper to the 'Supported NMR theories' subsection of the user manual intro.
........
r17375 | bugman | 2012-08-29 10:57:22 +0200 (Wed, 29 Aug 2012) | 5 lines

Added the Horne 2007 paper to the 'Citations' chapter of the user manual.

Whitespace has also been cleaned up, and a chapter label added.
........
r17376 | bugman | 2012-08-29 11:03:26 +0200 (Wed, 29 Aug 2012) | 3 lines

More chapter cross referencing in the relax user manual.
........

2012-10-16 08:15:25 Tree
Older >
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.