test/data/vclamp_jpk/README: Document sample versions
[hooke.git] / doc / tutorial.txt
index f8f06c32d068fe9e6a604d76e2e97b99180b0fb4..1e0b95709410e6d451b50dc9d2eed84e1e5fd602 100644 (file)
@@ -106,13 +106,20 @@ and you want to analyze them all.
 
 You then can ``cd`` (change directory) to the directory::
 
-    hooke> cd --path c:\curves
+    hooke> cd --path "c:\curves"
 
-Type ``pwd`` (print working directory) to check the directory is correct.::
+Hooke parses it's commandline using `POSIX rules`_, so you need to
+quote arguments with backslashes to keep them from being expanded as
+escape sequences (e.g. ``\t`` → ``TAB``).
+
+Type ``pwd`` (print working directory) to check the directory is
+correct.::
 
     hooke> pwd
     c:\curves
 
+.. _POSIX rules: http://docs.python.org/library/shlex#parsing-rules
+
 You can list the files in the directory using ``ls`` or ``dir``
 (they’re synonyms).::
 
@@ -308,64 +315,24 @@ ways.::
     hooke> remove_cantilever_from_extension --block retract
     hooke> flat_peaks_to_polymer_peaks --block retract
     hooke> polymer_fit_peaks --block retract
+    hooke> block_info --block retract --output data.yaml name 'polymer peak [0-9]*'
 
 This stores the fit parameters in the block's
-:attr:`~hooke.curve.Data.info` dictionary (see each command's `Help`_
-for details).  To access the parameters, save the playlist,::
-
-    hooke> save_playlist --output mylist.hkp
-
-load it with PyYAML_::
+:attr:`~hooke.curve.Data.info` dictionary and also appends them to
+:file:`data.yaml` (see each command's `Help`_ for details).  To access
+the parameters, load :file:`data.yaml` with PyYAML_::
 
     $ python
     >>> import yaml
     >>> import hooke.util.yaml
-    >>> mylist = yaml.load(open('mylist.hkp', 'r'))
+    >>> data = yaml.load(open('data.yaml', 'r'))
 
-navigate to your curve,::
+and extract your parameter::
 
-    >>> mylist.jump(1234)
-
-and extract your parameter.::
-
-    >>> mylist.current().data[1].info['polymer peak 0']['contour length (m)']
+    >>> data['20071120a_i27_t33.100']['retract']['polymer peak 0']['contour length (m)']
     2.124...e-08
 
-You can also get a list of all available parameters::
-
-    >>> mylist.current().data[1].info['polymer peak 0'].keys()
-    ['model', 'contour length (m)', 'temperature (K)', 'fit',
-     'persistence length (m)']
-
-or just pprint_ the whole thing::
-
-    >>> from pprint import pprint
-    >>> pprint(mylist.current().data[1].info['polymer peak 0'])
-    {'contour length (m)': 2.1248220207858103e-08,
-     'fit': {'active fitted parameters': 3.7024307200788127,
-             'active parameters': 3.7024307200788127,
-             'convergence flag': 1,
-             'covariance matrix': None,
-             'data scale factor': 5.2716380732198972e-10,
-             'fitted parameters': -2.5663294148411571,
-             'info': {'fjac': None,
-                      'fvec': None,
-                      'ipvt': None,
-                      'nfev': 16,
-                      'qtf': None},
-             'initial parameters': [-0.69314718055994529],
-             'message': 'Both actual and predicted relative reductions in the sum of squares\n  are at most 0.000000',
-             'rescaled': True,
-             'scale': None},
-     'model': u'WLC',
-     'persistence length (m)': 4.0000000000000001e-10,
-     'temperature (K)': 301.0}
-
 .. _PyYAML: http://pyyaml.org/
-.. _pprint: http://docs.python.org/library/pprint.html
-
-.. todo:: UI access to block (and curve?) info dicts.  Someone should
-   make a tree-based object browser ;).
 
 Command stacks
 ~~~~~~~~~~~~~~
@@ -423,7 +390,7 @@ freely jointed chain fitting`_ and `Command stacks`_.::
     hooke> remove_cantilever_from_extension --block retract
     hooke> flat_peaks_to_polymer_peaks --block retract
     hooke> polymer_fit_peaks --block retract
-    hooke> export_block --block retract --output myblock.dat
+    hooke> block_info --block retract --output data.yaml name 'polymer peak [0-9]*'
     hooke> stop_command_capture
     hooke> apply_command_stack_to_playlist