Module nmrpipe
source code
Module containing functions for handling NMRPipe SeriesTab files.
    |  | 
        
          | read_seriestab(peak_list=None,
        file_data=None,
        int_col=None) Extract the intensity information from the NMRPipe SeriesTab peak 
      intensity file.
 | source code |  | 
    |  | __package__ = 'lib.spectrum' | 
Imports:
  re,
  warn,
  RelaxError,
  open_write_file,
  strip,
  RelaxWarning
| 
  | read_seriestab(peak_list=None,
        file_data=None,
        int_col=None)
   | source code |  Extract the intensity information from the NMRPipe SeriesTab peak 
  intensity file. 
    Parameters:
        peak_list(lib.spectrum.objects.Peak_list instance) - The peak list object to place all data into.file_data(list of lists of str) - The data extracted from the file converted into a list of lists.int_col(int) - The column which to multiply the peak intensity data (used by the
          SeriesTab intensity file format).Raises:
        RelaxError- When the expected peak intensity is not a float. |