
org.biojava.nbio.structure.align.xml.RepresentativeXMLConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biojava-structure Show documentation
Show all versions of biojava-structure Show documentation
The protein structure modules of BioJava.
/*
* BioJava development code
*
* This code may be freely distributed and modified under the
* terms of the GNU Lesser General Public Licence. This should
* be distributed with the code. If you do not have a copy,
* see:
*
* http://www.gnu.org/copyleft/lesser.html
*
* Copyright for this code is held jointly by the individual
* authors. These should be listed in @author doc comments.
*
* For more information on the BioJava project and its aims,
* or to join the biojava-l mailing list, visit the home page
* at:
*
* http://www.biojava.org/
*
*/
package org.biojava.nbio.structure.align.xml;
import org.biojava.nbio.core.util.PrettyXMLWriter;
import org.w3c.dom.Document;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.InputSource;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.StringReader;
import java.io.StringWriter;
import java.util.SortedSet;
import java.util.TreeSet;
public class RepresentativeXMLConverter {
public static final String toXML(SortedSet representatives){
StringWriter sw = new StringWriter();
PrintWriter writer = new PrintWriter(sw);
PrettyXMLWriter xml = new PrettyXMLWriter(writer);
try {
xml.openTag("representatives");
for ( String repr : representatives){
xml.openTag("pdbChain");
xml.attribute("name", repr);
xml.closeTag("pdbChain");
}
xml.closeTag("representatives");
} catch(IOException ex){
ex.printStackTrace();
}
return sw.toString();
}
public static final SortedSet fromXML(String xml){
SortedSet representatives = new TreeSet();
try {
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder db = factory.newDocumentBuilder();
InputSource inStream = new InputSource();
inStream.setCharacterStream(new StringReader(xml));
Document doc = db.parse(inStream);
// normalize text representation
doc.getDocumentElement().normalize();
//Element rootElement = doc.getDocumentElement();
NodeList listOfPairs = doc.getElementsByTagName("pdbChain");
//int numArrays = listOfArrays.getLength();
// go over the blocks
for(int i=0; i
© 2015 - 2025 Weber Informatics LLC | Privacy Policy