Class: DefaultRecon::RawSequence

Inherits:
Object
  • Object
show all
Defined in:
lib/default_methods/recon/raw_sequence.rb

Overview

An abstract class for Raw Image Sequences The Recon job will calls prepare on Raw Sequence Instances to process them from their raw state (dicoms or pfiles) to Nifti files suitable for processing.

Direct Known Subclasses

DicomRawSequence, PfileRawSequence

Instance Method Summary collapse

Constructor Details

#initialize(scan_spec, rawdir) ⇒ RawSequence

Returns a new instance of RawSequence.



7
8
9
10
# File 'lib/default_methods/recon/raw_sequence.rb', line 7

def initialize(scan_spec, rawdir)
  @scan_spec = scan_spec
  @rawdir = rawdir
end