001package org.biopax.paxtools.pattern.miner;
002
003/**
004 * An interface for converting a SIF interaction to text.
005 *
006 * @author Ozgun Babur
007 */
008public interface SIFToText
009{
010        /**
011         * Creates the textual data corresponding to the given binary interaction.
012         * @param inter the interaction
013         * @return text data
014         */
015        public String convert(SIFInteraction inter);
016}