// $Id: // FORESTER -- software libraries and applications // for evolutionary biology research and applications. // // Copyright (C) 2009 Christian M. Zmasek // Copyright (C) 2009 Burnham Institute for Medical Research // All rights reserved // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA // // Contact: phylosoft @ gmail . com // WWW: https://sites.google.com/site/cmzmasek/home/software/forester package org.forester.application; import java.io.File; import java.io.IOException; import java.util.List; import java.util.Map; import java.util.Set; import java.util.SortedSet; import java.util.TreeSet; import org.forester.go.GoId; import org.forester.go.GoTerm; import org.forester.go.GoUtils; import org.forester.go.OBOparser; import org.forester.go.PfamToGoMapping; import org.forester.go.PfamToGoParser; public class pfam2go_extractor { final static private String PRG_NAME = "pfam2go_extractor"; public static void main( final String args[] ) { if ( args.length < 3 ) { printHelp(); } final PfamToGoParser p = new PfamToGoParser( new File( args[ 0 ] ) ); List pfam2go = null; try { pfam2go = p.parse(); } catch ( final IOException e ) { printHelp(); e.printStackTrace(); } final OBOparser parser = new OBOparser( new File( args[ 1 ] ), OBOparser.ReturnType.BASIC_GO_TERM ); List all_go_terms = null; try { all_go_terms = parser.parse(); } catch ( final IOException e ) { printHelp(); e.printStackTrace(); } final Map goid_to_term_map = GoUtils.createGoIdToGoTermMap( all_go_terms ); System.out.println( "# pfam2go : " + args[ 0 ] ); System.out.println( "# OBO file: " + args[ 1 ] ); final GoId[] queries = new GoId[ args.length - 2 ]; for( int i = 2; i < args.length; ++i ) { queries[ i - 2 ] = new GoId( args[ i ] ); System.out.println( "# " + ( i - 2 ) + ": " + queries[ i - 2 ].getId() + " = " + goid_to_term_map.get( queries[ i - 2 ] ).getName() + " (" + goid_to_term_map.get( queries[ i - 2 ] ).getDefinition() + ")" ); } final SortedSet pfams = new TreeSet(); for( final PfamToGoMapping pfam_to_go_mapping : pfam2go ) { final String domain_id = pfam_to_go_mapping.getKey(); final GoId go_id = pfam_to_go_mapping.getValue(); final Set supers = GoUtils.getAllSuperGoIds( go_id, goid_to_term_map ); supers.add( go_id ); for( final GoId querie : queries ) { if ( supers.contains( querie ) ) { pfams.add( domain_id.toString() ); } } } for( final String pfam : pfams ) { System.out.println( pfam ); } } private static void printHelp() { System.out.println(); System.out.println( PRG_NAME + " [more GO ids]" ); System.out.println(); } }