• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java IDMapper类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.bridgedb.IDMapper的典型用法代码示例。如果您正苦于以下问题:Java IDMapper类的具体用法?Java IDMapper怎么用?Java IDMapper使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



IDMapper类属于org.bridgedb包,在下文中一共展示了IDMapper类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: testImportSimplyWrong

import org.bridgedb.IDMapper; //导入依赖的package包/类
public void testImportSimplyWrong() throws IOException, IDMapperException
{
	ImportInformation info2 = new ImportInformation();
	File f = new File ("example-data/sample_data_1.txt");
	assertTrue (f.exists());
	info2.setTxtFile(f);

	String dbFileName = System.getProperty("java.io.tmpdir") + File.separator + "tempgex3";
	info2.setGexName(dbFileName);

	IDMapper gdb = BridgeDb.connect("idmapper-pgdb:" + GDB_HUMAN);
	GexTxtImporter.importFromTxt(info2, null, gdb, gexManager);

	// 91 errors expected if no genes can be looked up.
	assertEquals (91, info2.getErrorList().size());
}
 
开发者ID:PathVisio,项目名称:pathvisio,代码行数:17,代码来源:Test.java


示例2: testImportAffy

import org.bridgedb.IDMapper; //导入依赖的package包/类
public void testImportAffy() throws IOException, IDMapperException
{
	ImportInformation info = new ImportInformation();
	File f = new File ("example-data/sample_affymetrix.txt");
	assertTrue (f.exists());
	info.setTxtFile(f);
	info.guessSettings();

	assertEquals (info.getDataSource(), BioDataSource.AFFY);
	assertTrue (info.isSyscodeFixed());
	assertTrue (info.digitIsDot());
	assertEquals (info.getIdColumn(), 0);

	String dbFileName = System.getProperty("java.io.tmpdir") + File.separator + "tempgex2";
	info.setGexName(dbFileName);
	info.setSyscodeFixed(true);
	info.setDataSource(BioDataSource.AFFY);
	IDMapper gdb = BridgeDb.connect("idmapper-pgdb:" + GDB_RAT);
	GexTxtImporter.importFromTxt(info, null, gdb, gexManager);

	// just 6 errors if all goes well
	assertEquals (6, info.getErrorList().size());
}
 
开发者ID:PathVisio,项目名称:pathvisio,代码行数:24,代码来源:Test.java


示例3: testImportLongHeaders

import org.bridgedb.IDMapper; //导入依赖的package包/类
/**
 * Column headers have lenghts of over 50.
 * Make sure this doesn't lead to problems when setting sample names
 */
public void testImportLongHeaders() throws IOException, IDMapperException
{
	ImportInformation info = new ImportInformation();
	File f = new File ("example-data/sample_data_long_headers.txt");
	assertTrue (f.exists());
	info.setTxtFile(f);
	info.guessSettings();

	assertEquals (info.getDataSource(), BioDataSource.ENTREZ_GENE);
	assertTrue (info.isSyscodeFixed());
	assertTrue (info.digitIsDot());
	assertEquals (0, info.getIdColumn());

	String dbFileName = System.getProperty("java.io.tmpdir") + File.separator + "tempgex3";
	info.setGexName(dbFileName);

	IDMapper gdb = BridgeDb.connect("idmapper-pgdb:" + GDB_HUMAN);
	GexTxtImporter.importFromTxt(info, null, gdb, gexManager);

	// 0 errors if all goes well
	assertEquals (0, info.getErrorList().size());
}
 
开发者ID:PathVisio,项目名称:pathvisio,代码行数:27,代码来源:Test.java


示例4: testImportNoHeader

import org.bridgedb.IDMapper; //导入依赖的package包/类
public void testImportNoHeader() throws IOException, IDMapperException
{
	ImportInformation info = new ImportInformation();
	File f = new File ("example-data/sample_data_no_header.txt");
	assertTrue (f.exists());
	info.setTxtFile(f);
	info.setFirstDataRow(0);
	info.guessSettings();

	assertEquals (info.getDataSource(), BioDataSource.ENTREZ_GENE);
	assertFalse (info.isSyscodeFixed());
	assertTrue (info.digitIsDot());
	assertEquals (0, info.getIdColumn());
	assertTrue (info.getNoHeader());
	assertEquals ("Column A", info.getColNames()[0]);

	String dbFileName = System.getProperty("java.io.tmpdir") + File.separator + "tempgex5";
	info.setGexName(dbFileName);

	IDMapper gdb = BridgeDb.connect("idmapper-pgdb:" + GDB_HUMAN);
	GexTxtImporter.importFromTxt(info, null, gdb, gexManager);

	// 0 errors if all goes well
	assertEquals (0, info.getErrorList().size());
}
 
开发者ID:PathVisio,项目名称:pathvisio,代码行数:26,代码来源:Test.java


示例5: testImportWithText

import org.bridgedb.IDMapper; //导入依赖的package包/类
/**
 * Test dataset contains two columns with textual data
 * make sure this doesn't give problems during import
 */
public void testImportWithText() throws IOException, IDMapperException
{
	ImportInformation info = new ImportInformation();
	File f = new File ("example-data/sample_data_with_text.txt");
	assertTrue (f.exists());
	info.setTxtFile(f);
	info.guessSettings();

	assertEquals (info.getDataSource(), BioDataSource.ENTREZ_GENE);
	assertFalse (info.isSyscodeFixed());
	assertEquals (info.getSyscodeColumn(), 1);
	assertTrue (info.digitIsDot());
	assertEquals (info.getIdColumn(), 0);

	String dbFileName = System.getProperty("java.io.tmpdir") + File.separator + "tempgex4";
	info.setGexName(dbFileName);

	IDMapper gdb = BridgeDb.connect("idmapper-pgdb:" + GDB_HUMAN);
	GexTxtImporter.importFromTxt(info, null, gdb, gexManager);

	// 0 errors if all goes well
	assertEquals (info.getErrorList().size(), 0);
}
 
开发者ID:PathVisio,项目名称:pathvisio,代码行数:28,代码来源:Test.java


示例6: ZScoreCalculator

import org.bridgedb.IDMapper; //导入依赖的package包/类
public ZScoreCalculator(Criterion crit, File pwDir, CachedData gex, IDMapper gdb, ProgressKeeper pk)
{
	if (pk != null)
	{
		pk.setProgress (0);
		pk.setTaskName("Analyzing data");
	}

	result = new StatisticsResult();
	result.crit = crit;
	result.stm = new StatisticsTableModel();
	result.stm.setColumns(new Column[] {Column.PATHWAY_NAME, Column.R, Column.N, Column.TOTAL, Column.PCT, Column.ZSCORE, Column.PERMPVAL});
	result.pwDir = pwDir;
	result.gex = gex;
	result.gdb = gdb;
	this.pk = pk;
}
 
开发者ID:PathVisio,项目名称:pathvisio,代码行数:18,代码来源:ZScoreCalculator.java


示例7: getIdentifiers

import org.bridgedb.IDMapper; //导入依赖的package包/类
private String getIdentifiers(String identifier, String targetSyscodeIn,
		List<String> targetSyscodeOut, IDMapper mapper) throws IDMapperException {
	String identifiers = "";
	Set<String> ids = new HashSet<String>();
	ids.add(identifier);
	Xref in = new Xref(identifier, DataSource.getBySystemCode(targetSyscodeIn));
	for(String ds : targetSyscodeOut) {
		Set<Xref> result = mapper.mapID(in, DataSource.getBySystemCode(ds));
		for(Xref x : result) {
			ids.add(x.getId());
		}
	}
	for(String str : ids) {
		if(!str.equals(identifier)) {
			identifiers = identifiers + "," + str;
		}
	}
	return identifiers;
}
 
开发者ID:mkutmon,项目名称:regin-creator,代码行数:20,代码来源:GenericCreator.java


示例8: connect

import org.bridgedb.IDMapper; //导入依赖的package包/类
public IDMapper connect(String location) throws IDMapperException {
    // e.g.: ?authority=ensembl&species=Homo sapiens
    String baseURL = SynergizerStub.defaultBaseURL;

    Map<String, String> info = 
    	InternalUtils.parseLocation(location, "authority", "species");
    
    if (info.containsKey("BASE"))
    {
    	baseURL = info.get("BASE");
	}
    // could be null
    String authority = info.get ("authority");
    // could be null
    String species = info.get ("species");
    return new IDMapperSynergizer(authority, species, baseURL);

}
 
开发者ID:bridgedb,项目名称:BridgeDb,代码行数:19,代码来源:IDMapperSynergizer.java


示例9: isLoopFreeExtension

import org.bridgedb.IDMapper; //导入依赖的package包/类
/**
 * @param other Some other path
 * @return true if this path is a non-cyclic extension of the other path.
 *   a path is considered "cyclic" when it uses the same IDMapper twice.
 *   (note that this is not the only possible definition of cyclic. But it is
 *   a convenient definition as it culls the number of paths, and thus
 *   reduces combinatorial problems)
 */
protected boolean isLoopFreeExtension( Path other ) 
{
	/*
	 // see the commented code here for another possible definition of cyclic: 
	for (Edge e : other.delegate)
	{
		if (delegate.contains(e)) 
			return false;
	}
	return true;
	 * 
	 */
	for (IDMapper m : other.mappers)
		if (mappers.contains(m)) return false;
	return true;
}
 
开发者ID:bridgedb,项目名称:BridgeDb,代码行数:25,代码来源:TransitiveGraph.java


示例10: getDirectPaths

import org.bridgedb.IDMapper; //导入依赖的package包/类
/**
 * Create a list of all direct (i.e. one-step) paths. 
 * 
 * @return Hash that contains all relevant information on maps between
 *         DataSources of all IDMappers in this IDMapperStack. Reflexive
 *         maps (DataSourced X -> DataSource X) are ignored. The map will
 *         contain only DataSources that are connected.
 *         
 * @throws IDMapperException
 */
private Set<Path> getDirectPaths(List<IDMapper> gdbs)
		throws IDMapperException {

	Set<Path> result = new HashSet<Path>();
	
	// add each DataSource to a PathCollection
	for (IDMapper idm : gdbs) {
		if (idm != null && idm.isConnected()) {
			IDMapperCapabilities capas = idm.getCapabilities();
			for (DataSource src : capas.getSupportedSrcDataSources()) {
				for (DataSource tgt : capas.getSupportedTgtDataSources()) {
					if (capas.isMappingSupported(src, tgt) && src != tgt) {
						Edge edge = new Edge(src, tgt, idm);
						Path path = new Path(edge);
						result.add(path);
					}
				}
			}
		}
	}
	return result;
}
 
开发者ID:bridgedb,项目名称:BridgeDb,代码行数:33,代码来源:TransitiveGraph.java


示例11: main

import org.bridgedb.IDMapper; //导入依赖的package包/类
public static void main (String[] args) throws ClassNotFoundException, IDMapperException
{
	// We'll use the BridgeRest webservice in this case, as it does compound mapping fairly well.
	// We'll use the human database, but it doesn't really matter which species we pick.
	Class.forName ("org.bridgedb.webservice.bridgerest.BridgeRest");
	IDMapper mapper = BridgeDb.connect("idmapper-bridgerest:http://webservice.bridgedb.org/Human");

	// Start with defining the Chebi identifier for
	// Methionine, id 16811
	Xref src = new Xref("16811", BioDataSource.CHEBI);		
	
	// the method returns a set, but in actual fact there is only one result
	for (Xref dest : mapper.mapID(src, BioDataSource.PUBCHEM_COMPOUND))
	{
		// this should print 6137, the pubchem identifier for Methionine.
		System.out.println ("" + dest.getId());
	}
}
 
开发者ID:bridgedb,项目名称:BridgeDb,代码行数:19,代码来源:ChebiPubchemExample.java


示例12: main

import org.bridgedb.IDMapper; //导入依赖的package包/类
public static void main(String args[]) throws ClassNotFoundException, IDMapperException
{
	// This example shows how to do a free text search for an identifier
	
	// first we have to load the driver
	// and initialize information about DataSources
	Class.forName("org.bridgedb.webservice.bridgerest.BridgeRest");
	DataSourceTxt.init();
	
	// now we connect to the driver and create a IDMapper instance.
	IDMapper mapper = BridgeDb.connect ("idmapper-bridgerest:http://webservice.bridgedb.org/Human");
	
	String query = "3643";
		
	// let's do a free search without specifying the input type:
	Set<Xref> hits = mapper.freeSearch(query, 100);
	
	// Now print the results.
	// with getURN we obtain valid MIRIAM urn's if possible.
	System.out.println (query + " search results:");
	for (Xref hit : hits)
		System.out.println("  " + hit.getURN());
}
 
开发者ID:bridgedb,项目名称:BridgeDb,代码行数:24,代码来源:ExIDSearch.java


示例13: main

import org.bridgedb.IDMapper; //导入依赖的package包/类
public static void main (String[] args) throws ClassNotFoundException, IDMapperException
{
	// We want to map primary or secondary Uniprot ID's to the primary ID.
	// The best resource to do this is Picr, so we set up a connection
	Class.forName ("org.bridgedb.webservice.picr.IDMapperPicr");
	IDMapper mapper = BridgeDb.connect("idmapper-picr:");

	
	// what's there?
	System.out.println("IDMapperBiomart\n keys" + mapper.getCapabilities().getKeys().toString());
	System.out.println("supported src: " + mapper.getCapabilities().getSupportedSrcDataSources().toString());
	System.out.println("supported dst: " + mapper.getCapabilities().getSupportedTgtDataSources().toString());
	
	
	// we look for ID "Q91Y97"
	Xref src = new Xref("Q91Y97", DataSource.getByFullName("SWISSPROT"));
	
	// we request swissprot id's back. By default, we only get primary identifiers from picr. 
	// the method returns a set, but in actual fact there is only one result
	for (Xref dest : mapper.mapID(src, DataSource.getByFullName("SWISSPROT")))
	{
		//This should print Q91Y97 again, as it already is the primary identifier.
		System.out.println ("" + dest.getId());
	}
	
}
 
开发者ID:bridgedb,项目名称:BridgeDb,代码行数:27,代码来源:PicrUniprotExample.java


示例14: testGdbAttributes

import org.bridgedb.IDMapper; //导入依赖的package包/类
/**
 * From schema v2 to v3 there was a change in how the backpage was stored.
 * In schema v2 there was a backpage column in the datanode table
 * In schema v3 the backpage is split in several attributes.
 * For backwards compatibility, SimpleGdbImpl2 fakes these new attributes. 
 * This is tested here. 
 * @throws IDMapperException should be considered a failed test
 */
@Ignore public void testGdbAttributes() throws IDMapperException
{
	// test special attributes that are grabbed from backpage
	// since this is a Schema v2 database
	IDMapper gdb = BridgeDb.connect ("idmapper-pgdb:" + GDB_HUMAN);
	AttributeMapper am = (AttributeMapper)gdb;
	Xref ref = new Xref ("26873", DataSource.getBySystemCode("L"));
	Assert.assertTrue (am.getAttributes(ref, "Synonyms").contains ("5-Opase|DKFZP434H244|OPLA"));
	Assert.assertTrue (am.getAttributes(ref, "Description").contains ("5-oxoprolinase (EC 3.5.2.9) (5-oxo-L-prolinase) (5-OPase) (Pyroglutamase) [Source:UniProtKB/Swiss-Prot.Acc:O14841]"));
	Assert.assertTrue (am.getAttributes(ref, "Chromosome").contains ("8"));
	Assert.assertTrue (am.getAttributes(ref, "Symbol").contains ("OPLAH"));
	
	Set<String> allExpectedAttributes = new HashSet<String>();
	allExpectedAttributes.add ("26873");
}
 
开发者ID:bridgedb,项目名称:BridgeDb,代码行数:24,代码来源:Test2.java


示例15: connect

import org.bridgedb.IDMapper; //导入依赖的package包/类
/** {@inheritDoc} */
public IDMapper connect(String location) throws IDMapperException  {
    // e.g.: dataset=oanatinus_gene_ensembl
    // e.g.: http://www.biomart.org/biomart/martservice?mart=ensembl&dataset=hsapiens_gene_ensembl
    String baseURL = BiomartClient.DEFAULT_BASE_URL;

    Map<String, String> args = 
    	InternalUtils.parseLocation(location, "mart", "dataset");
    
    if (args.containsKey("BASE"))
    {
    	baseURL = args.get("BASE");
    }
    
    // may be null if unspecified.
    String mart = args.get("mart");
    
    // may be null if unspecified.
    String dataset = args.get("dataset");

    return new IDMapperBiomart(mart, dataset, baseURL);
}
 
开发者ID:bridgedb,项目名称:BridgeDb,代码行数:23,代码来源:IDMapperBiomart.java


示例16: testBioMartMapping

import org.bridgedb.IDMapper; //导入依赖的package包/类
@Test
 public void testBioMartMapping() throws IOException, IDMapperException, ClassNotFoundException
 {
    Class.forName("org.bridgedb.webservice.biomart.IDMapperBiomart");
     
    IDMapper mapper = BridgeDb.connect ("idmapper-biomart:http://www.biomart.org/biomart/martservice?mart=ensembl&dataset=hsapiens_gene_ensembl");
    
    Set<Xref> result = mapper.mapID(
 		   new Xref("ENSG00000171105", DataSource.getByFullName("ensembl_gene_id")),
 		   DataSource.getByFullName("entrezgene"));
    for (Xref ref : result)
    {
 	   System.out.println (ref);
    }
    
    assertTrue ("Expected entrezgene:3643. Got " + setRep (result), 
 		   result.contains (new Xref ("3643", DataSource.getByFullName("entrezgene"))));
}
 
开发者ID:bridgedb,项目名称:BridgeDb,代码行数:19,代码来源:TestBiomart.java


示例17: connect

import org.bridgedb.IDMapper; //导入依赖的package包/类
public IDMapper connect(String location) throws IDMapperException 
{
	URI baseURL = DEFAULT_BASE_URL;

	Map<String, String> info = 
		InternalUtils.parseLocation(location);
	
	if (info.containsKey("BASE"))
	{
		String base = info.get("BASE");
		if (! (base.endsWith("/"))) {
			base += "/";
		}					
		baseURL = URI.create(base);
	}
	return new IDMapperUniprot(baseURL);
}
 
开发者ID:bridgedb,项目名称:BridgeDb,代码行数:18,代码来源:IDMapperUniprot.java


示例18: getSupportedDataSourceResult

import org.bridgedb.IDMapper; //导入依赖的package包/类
@Get
public String getSupportedDataSourceResult() 
{
	try
	{
        StringBuilder result = new StringBuilder();
        IDMapper mapper = getIDMappers();
       	for (DataSource ds : mapper.getCapabilities().getSupportedSrcDataSources())
    	{
    		result.append(ds.getFullName());
    		result.append ("\n");
    	}
	    return result.toString();
	} 
	catch( Exception e ) 
	{
	    e.printStackTrace();
	    setStatus( Status.SERVER_ERROR_INTERNAL );
	    return e.getMessage();
	}
}
 
开发者ID:bridgedb,项目名称:BridgeDb,代码行数:22,代码来源:SupportedSourceDataSources.java


示例19: getSupportedDataSourceResult

import org.bridgedb.IDMapper; //导入依赖的package包/类
@Get
public String getSupportedDataSourceResult() 
{
	try
	{
        StringBuilder result = new StringBuilder();
	    IDMapper mapper = getIDMappers(); 
    	for (DataSource ds : mapper.getCapabilities().getSupportedTgtDataSources())
    	{
    		result.append(ds.getFullName());
    		result.append ("\n");
    	}
	    return result.toString();
	} 
	catch( Exception e ) 
	{
	    e.printStackTrace();
	    setStatus( Status.SERVER_ERROR_INTERNAL );
	    return e.getMessage();
	}
}
 
开发者ID:bridgedb,项目名称:BridgeDb,代码行数:22,代码来源:SupportedTargetDataSources.java


示例20: isFreeSearchSupported

import org.bridgedb.IDMapper; //导入依赖的package包/类
@Get
public String isFreeSearchSupported() 
{
	try
	{
		IDMapper mapper = getIDMappers();
		boolean isSupported = mapper.getCapabilities().isFreeSearchSupported();
	    return "" + isSupported;
	} 
	catch( Exception e ) 
	{
	    e.printStackTrace();
	    setStatus( Status.SERVER_ERROR_INTERNAL );
	    return e.getMessage();
	}
}
 
开发者ID:bridgedb,项目名称:BridgeDb,代码行数:17,代码来源:IsFreeSearchSupported.java



注:本文中的org.bridgedb.IDMapper类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java TransAction类代码示例发布时间:2022-05-22
下一篇:
Java Sail类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap