You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
171 lines
5.1 KiB
C
171 lines
5.1 KiB
C
|
3 weeks ago
|
/*=========================================================================
|
||
|
|
|
||
|
|
Program: Visualization Toolkit
|
||
|
|
Module: vtkPhyloXMLTreeWriter.h
|
||
|
|
|
||
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
||
|
|
All rights reserved.
|
||
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
||
|
|
|
||
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
||
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||
|
|
PURPOSE. See the above copyright notice for more information.
|
||
|
|
|
||
|
|
=========================================================================*/
|
||
|
|
/**
|
||
|
|
* @class vtkPhyloXMLTreeWriter
|
||
|
|
* @brief write vtkTree data to PhyloXML format.
|
||
|
|
*
|
||
|
|
* vtkPhyloXMLTreeWriter is writes a vtkTree to a PhyloXML formatted file
|
||
|
|
* or string.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef vtkPhyloXMLTreeWriter_h
|
||
|
|
#define vtkPhyloXMLTreeWriter_h
|
||
|
|
|
||
|
|
#include "vtkIOInfovisModule.h" // For export macro
|
||
|
|
#include "vtkXMLWriter.h"
|
||
|
|
#include "vtkSmartPointer.h" // For SP ivars
|
||
|
|
#include "vtkStdString.h" // For get/set ivars
|
||
|
|
|
||
|
|
class vtkStringArray;
|
||
|
|
class vtkTree;
|
||
|
|
class vtkXMLDataElement;
|
||
|
|
|
||
|
|
class VTKIOINFOVIS_EXPORT vtkPhyloXMLTreeWriter : public vtkXMLWriter
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static vtkPhyloXMLTreeWriter *New();
|
||
|
|
vtkTypeMacro(vtkPhyloXMLTreeWriter,vtkXMLWriter);
|
||
|
|
void PrintSelf(ostream& os, vtkIndent indent);
|
||
|
|
|
||
|
|
//@{
|
||
|
|
/**
|
||
|
|
* Get the input to this writer.
|
||
|
|
*/
|
||
|
|
vtkTree* GetInput();
|
||
|
|
vtkTree* GetInput(int port);
|
||
|
|
//@}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Get the default file extension for files written by this writer.
|
||
|
|
*/
|
||
|
|
virtual const char* GetDefaultFileExtension();
|
||
|
|
|
||
|
|
//@{
|
||
|
|
/**
|
||
|
|
* Get/Set the name of the input's tree edge weight array.
|
||
|
|
* This array must be part of the input tree's EdgeData.
|
||
|
|
* The default name is "weight". If this array cannot be
|
||
|
|
* found, then no edge weights will be included in the
|
||
|
|
* output of this writer.
|
||
|
|
*/
|
||
|
|
vtkGetMacro(EdgeWeightArrayName, vtkStdString);
|
||
|
|
vtkSetMacro(EdgeWeightArrayName, vtkStdString);
|
||
|
|
//@}
|
||
|
|
|
||
|
|
//@{
|
||
|
|
/**
|
||
|
|
* Get/Set the name of the input's tree node name array.
|
||
|
|
* This array must be part of the input tree's VertexData.
|
||
|
|
* The default name is "node name". If this array cannot
|
||
|
|
* be found, then no node names will be included in the
|
||
|
|
* output of this writer.
|
||
|
|
*/
|
||
|
|
vtkGetMacro(NodeNameArrayName, vtkStdString);
|
||
|
|
vtkSetMacro(NodeNameArrayName, vtkStdString);
|
||
|
|
//@}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Do not include name the VertexData array in the PhyloXML output
|
||
|
|
* of this writer. Call this function once for each array that
|
||
|
|
* you wish to ignore.
|
||
|
|
*/
|
||
|
|
void IgnoreArray(const char * arrayName);
|
||
|
|
|
||
|
|
protected:
|
||
|
|
vtkPhyloXMLTreeWriter();
|
||
|
|
~vtkPhyloXMLTreeWriter() {}
|
||
|
|
|
||
|
|
virtual int WriteData();
|
||
|
|
|
||
|
|
virtual const char* GetDataSetName();
|
||
|
|
virtual int StartFile();
|
||
|
|
virtual int EndFile();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Check for an optional, tree-level element and write it out if it is
|
||
|
|
* found.
|
||
|
|
*/
|
||
|
|
void WriteTreeLevelElement(vtkTree *input,
|
||
|
|
vtkXMLDataElement *rootElement,
|
||
|
|
const char *elementName,
|
||
|
|
const char *attributeName);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Search for any tree-level properties and write them out if they are found.
|
||
|
|
*/
|
||
|
|
void WriteTreeLevelProperties(vtkTree *input, vtkXMLDataElement *rootElement);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Convert one vertex to PhyloXML. This function calls itself recursively
|
||
|
|
* for any children of the input vertex.
|
||
|
|
*/
|
||
|
|
void WriteCladeElement(vtkTree* const input, vtkIdType vertex,
|
||
|
|
vtkXMLDataElement *parentElement);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Write the branch length attribute for the specified vertex.
|
||
|
|
*/
|
||
|
|
void WriteBranchLengthAttribute(vtkTree* const input, vtkIdType vertex,
|
||
|
|
vtkXMLDataElement *element);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Write the name element for the specified vertex.
|
||
|
|
*/
|
||
|
|
void WriteNameElement(vtkIdType vertex, vtkXMLDataElement *element);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Write the confidence element for the specified vertex.
|
||
|
|
*/
|
||
|
|
void WriteConfidenceElement(vtkTree* const input, vtkIdType vertex,
|
||
|
|
vtkXMLDataElement *element);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Write the color element and its subelements (red, green, blue)
|
||
|
|
* for the specified vertex.
|
||
|
|
*/
|
||
|
|
void WriteColorElement(vtkTree* const input, vtkIdType vertex,
|
||
|
|
vtkXMLDataElement *element);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Write a property element as a child of the specified vtkXMLDataElement.
|
||
|
|
*/
|
||
|
|
void WritePropertyElement(vtkAbstractArray *array, vtkIdType vertex,
|
||
|
|
vtkXMLDataElement *element);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Get the value of the requested attribute from the specified array's
|
||
|
|
* vtkInformation.
|
||
|
|
*/
|
||
|
|
const char* GetArrayAttribute(vtkAbstractArray *array,
|
||
|
|
const char *attributeName);
|
||
|
|
|
||
|
|
virtual int FillInputPortInformation(int port, vtkInformation *info);
|
||
|
|
|
||
|
|
vtkInformation* InputInformation;
|
||
|
|
|
||
|
|
vtkStdString EdgeWeightArrayName;
|
||
|
|
vtkStdString NodeNameArrayName;
|
||
|
|
|
||
|
|
vtkAbstractArray *EdgeWeightArray;
|
||
|
|
vtkAbstractArray *NodeNameArray;
|
||
|
|
vtkSmartPointer<vtkStringArray> Blacklist;
|
||
|
|
|
||
|
|
private:
|
||
|
|
vtkPhyloXMLTreeWriter(const vtkPhyloXMLTreeWriter&) VTK_DELETE_FUNCTION;
|
||
|
|
void operator=(const vtkPhyloXMLTreeWriter&) VTK_DELETE_FUNCTION;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|