
Load/Save your data
-------------------

Data can be parsed from a tab delimited plain text file:

.. ipython:: python

   file = '../demo/data/mystic.counts'
   counts = SM.fromTxt(file)
   shape(counts)

Loaded data can be exported to a text file, or pickled:

.. ipython:: python
	
   file = '../demo/data/mystic.counts'
   counts.toTxt(file)
   file = '../demo/data/mystic.pick'
   counts.toPickle(file)
   
Previously pickled data can be loaded directly: 

.. ipython:: python
	
   file = '../demo/data/mystic.pick'
   counts.fromPickle(file)




