blogjava-凯发k8网页登录

blogjava-凯发k8网页登录http://www.blogjava.net/rain1102/category/37642.html
化学结构搜索,化学信息学,生物信息学,实验室信息学等 。
以高科技的生物、化学信息技术实现生命科学领域中专业数据的计算和管理、提高研发能力、增强在科研和成本效率方面的国际竞争力,为生物、化学、医药和学术机构提供一流的凯发天生赢家一触即发官网的解决方案和技术咨询。

子曰:危邦不入,乱邦不居。天下有道则见,无道则隐。
zh-cntue, 26 jul 2011 01:49:12 gmttue, 26 jul 2011 01:49:12 gmt60利用jpg图片生成高质量的缩略图http://www.blogjava.net/rain1102/archive/2011/07/26/355029.html周锐周锐tue, 26 jul 2011 01:49:00 gmthttp://www.blogjava.net/rain1102/archive/2011/07/26/355029.htmlhttp://www.blogjava.net/rain1102/comments/355029.htmlhttp://www.blogjava.net/rain1102/archive/2011/07/26/355029.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/355029.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/355029.html如果给出缩略图的宽度和高度,那么就会根据给出的宽度和高度生产缩略图,如果只给出宽度或者高度值,那么就会根据比例生成缩略图。
package com.founder.common.utils;

import java.awt.image.bufferedimage;
import java.io.file;
import javax.imageio.imageio;

//生成等比例高质量缩略图
public class thumbnailutil {
 private static int width;
 private static int height;
 private static int scalewidth;
 static double support = (double) 3.0;
 static double pi = (double) 3.14159265358978;
 static double[] contrib;
 static double[] normcontrib;
 static double[] tmpcontrib;
 static int startcontrib, stopcontrib;
 static int ndots;
 static int nhalfdots;

 public static void saveimage(string fromfilestr, string savetofilestr, int formatwidth, int formatheight) throws exception {
  file savefile = new file(savetofilestr);
  file fromfile = new file(fromfilestr);
  saveimage(fromfile, savefile, formatwidth, formatheight);
 }
 
 public static void saveimage(file fromfile  , file savefile, int formatwidth, int formatheight) throws exception {
  bufferedimage srcimage;
  srcimage = javax.imageio.imageio.read(fromfile); // construct image
  int imagewidth = srcimage.getwidth(null);
  int imageheight = srcimage.getheight(null);
  int changetowidth = 0;
  int changetoheight = 0;
  if (formatwidth > 0 && formatheight > 0) {
   changetowidth = formatwidth;
   changetoheight = formatheight;
  } else {
   if (imagewidth > 0 && imageheight > 0) {
    if (imagewidth / imageheight >= formatwidth / formatheight) {
     if (imagewidth > formatwidth) {
      changetowidth = formatwidth;
      changetoheight = (imageheight * formatwidth) / imagewidth;
     } else {
      changetowidth = imagewidth;
      changetoheight = imageheight;
     }
    } else {
     if (imageheight > formatheight) {
      changetoheight = formatheight;
      changetowidth = (imagewidth * formatheight) / imageheight;
     } else {
      changetowidth = imagewidth;
      changetoheight = imageheight;
     }
    }
   }
  }
  
  srcimage = imagezoomout(srcimage, changetowidth, changetoheight);
  imageio.write(srcimage, "jpeg", savefile);
 }

 public static bufferedimage imagezoomout(bufferedimage srcbufferimage, int w, int h) {
  width = srcbufferimage.getwidth();
  height = srcbufferimage.getheight();
  scalewidth = w;

  if (determineresultsize(w, h) == 1) {
   return srcbufferimage;
  }
  calcontrib();
  bufferedimage pbout = horizontalfiltering(srcbufferimage, w);
  bufferedimage pbfinalout = verticalfiltering(pbout, h);
  return pbfinalout;
 }

 /**
  * 决定图像尺寸
  */
 private static int determineresultsize(int w, int h) {
  double scaleh, scalev;
  scaleh = (double) w / (double) width;
  scalev = (double) h / (double) height;
  // 需要判断一下scaleh,scalev,不做放大操作
  if (scaleh >= 1.0 && scalev >= 1.0) {
   return 1;
  }
  return 0;

 }

 private static double lanczos(int i, int inwidth, int outwidth, double support) {
  double x;

  x = (double) i * (double) outwidth / (double) inwidth;

  return math.sin(x * pi) / (x * pi) * math.sin(x * pi / support)
    / (x * pi / support);

 }

 private static void calcontrib() {
  nhalfdots = (int) ((double) width * support / (double) scalewidth);
  ndots = nhalfdots * 2 1;
  try {
   contrib = new double[ndots];
   normcontrib = new double[ndots];
   tmpcontrib = new double[ndots];
  } catch (exception e) {
   system.out.println("init contrib,normcontrib,tmpcontrib" e);
  }

  int center = nhalfdots;
  contrib[center] = 1.0;

  double weight = 0.0;
  int i = 0;
  for (i = 1; i <= center; i ) {
   contrib[center i] = lanczos(i, width, scalewidth, support);
   weight = contrib[center i];
  }

  for (i = center - 1; i >= 0; i--) {
   contrib[i] = contrib[center * 2 - i];
  }

  weight = weight * 2 1.0;

  for (i = 0; i <= center; i ) {
   normcontrib[i] = contrib[i] / weight;
  }

  for (i = center 1; i < ndots; i ) {
   normcontrib[i] = normcontrib[center * 2 - i];
  }
 }

 // 处理边缘
 private static void caltempcontrib(int start, int stop) {
  double weight = 0;

  int i = 0;
  for (i = start; i <= stop; i ) {
   weight = contrib[i];
  }

  for (i = start; i <= stop; i ) {
   tmpcontrib[i] = contrib[i] / weight;
  }

 }

 private static int getredvalue(int rgbvalue) {
  int temp = rgbvalue & 0x00ff0000;
  return temp >> 16;
 }

 private static int getgreenvalue(int rgbvalue) {
  int temp = rgbvalue & 0x0000ff00;
  return temp >> 8;
 }

 private static int getbluevalue(int rgbvalue) {
  return rgbvalue & 0x000000ff;
 }

 private static int comrgb(int redvalue, int greenvalue, int bluevalue) {

  return (redvalue << 16) (greenvalue << 8) bluevalue;
 }

 // 行水平滤波
 private static int horizontalfilter(bufferedimage bufimg, int startx, int stopx,
   int start, int stop, int y, double[] pcontrib) {
  double valuered = 0.0;
  double valuegreen = 0.0;
  double valueblue = 0.0;
  int valuergb = 0;
  int i, j;

  for (i = startx, j = start; i <= stopx; i , j ) {
   valuergb = bufimg.getrgb(i, y);

   valuered = getredvalue(valuergb) * pcontrib[j];
   valuegreen = getgreenvalue(valuergb) * pcontrib[j];
   valueblue = getbluevalue(valuergb) * pcontrib[j];
  }

  valuergb = comrgb(clip((int) valuered), clip((int) valuegreen),
    clip((int) valueblue));
  return valuergb;

 }

 // 图片水平滤波
 private static bufferedimage horizontalfiltering(bufferedimage bufimage, int ioutw) {
  int dwinw = bufimage.getwidth();
  int dwinh = bufimage.getheight();
  int value = 0;
  bufferedimage pbout = new bufferedimage(ioutw, dwinh,
    bufferedimage.type_int_rgb);

  for (int x = 0; x < ioutw; x ) {

   int startx;
   int start;
   int x = (int) (((double) x) * ((double) dwinw) / ((double) ioutw) 0.5);
   int y = 0;

   startx = x - nhalfdots;
   if (startx < 0) {
    startx = 0;
    start = nhalfdots - x;
   } else {
    start = 0;
   }

   int stop;
   int stopx = x nhalfdots;
   if (stopx > (dwinw - 1)) {
    stopx = dwinw - 1;
    stop = nhalfdots (dwinw - 1 - x);
   } else {
    stop = nhalfdots * 2;
   }

   if (start > 0 || stop < ndots - 1) {
    caltempcontrib(start, stop);
    for (y = 0; y < dwinh; y ) {
     value = horizontalfilter(bufimage, startx, stopx, start,
       stop, y, tmpcontrib);
     pbout.setrgb(x, y, value);
    }
   } else {
    for (y = 0; y < dwinh; y ) {
     value = horizontalfilter(bufimage, startx, stopx, start,
       stop, y, normcontrib);
     pbout.setrgb(x, y, value);
    }
   }
  }

  return pbout;

 }

 private static int verticalfilter(bufferedimage pbinimage, int starty, int stopy,
   int start, int stop, int x, double[] pcontrib) {
  double valuered = 0.0;
  double valuegreen = 0.0;
  double valueblue = 0.0;
  int valuergb = 0;
  int i, j;

  for (i = starty, j = start; i <= stopy; i , j ) {
   valuergb = pbinimage.getrgb(x, i);

   valuered = getredvalue(valuergb) * pcontrib[j];
   valuegreen = getgreenvalue(valuergb) * pcontrib[j];
   valueblue = getbluevalue(valuergb) * pcontrib[j];
  }

  valuergb = comrgb(clip((int) valuered), clip((int) valuegreen), clip((int) valueblue));
  
  return valuergb;

 }

 private static bufferedimage verticalfiltering(bufferedimage pbimage, int iouth) {
  int iw = pbimage.getwidth();
  int ih = pbimage.getheight();
  int value = 0;
  bufferedimage pbout = new bufferedimage(iw, iouth,
    bufferedimage.type_int_rgb);

  for (int y = 0; y < iouth; y ) {

   int starty;
   int start;
   int y = (int) (((double) y) * ((double) ih) / ((double) iouth) 0.5);

   starty = y - nhalfdots;
   if (starty < 0) {
    starty = 0;
    start = nhalfdots - y;
   } else {
    start = 0;
   }

   int stop;
   int stopy = y nhalfdots;
   if (stopy > (int) (ih - 1)) {
    stopy = ih - 1;
    stop = nhalfdots (ih - 1 - y);
   } else {
    stop = nhalfdots * 2;
   }

   if (start > 0 || stop < ndots - 1) {
    caltempcontrib(start, stop);
    for (int x = 0; x < iw; x ) {
     value = verticalfilter(pbimage, starty, stopy, start, stop,
       x, tmpcontrib);
     pbout.setrgb(x, y, value);
    }
   } else {
    for (int x = 0; x < iw; x ) {
     value = verticalfilter(pbimage, starty, stopy, start, stop,
       x, normcontrib);
     pbout.setrgb(x, y, value);
    }
   }

  }

  return pbout;

 }

 static int clip(int x) {
  if (x < 0)
   return 0;
  if (x > 255)
   return 255;
  return x;
 }
}



周锐 2011-07-26 09:49
]]>
在sqlplus中执行用java编写的oracle存储过程[转载]http://www.blogjava.net/rain1102/archive/2011/06/22/352799.html周锐周锐wed, 22 jun 2011 04:38:00 gmthttp://www.blogjava.net/rain1102/archive/2011/06/22/352799.htmlhttp://www.blogjava.net/rain1102/comments/352799.htmlhttp://www.blogjava.net/rain1102/archive/2011/06/22/352799.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/352799.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/352799.html

首先在pl/sql中分别执行:

create or replace and compile java source named testjava1 as 
public class testjava1 

  public static void test() 
  { 
   system.out.println("hello"); 
  } 
}


create or replace procedure testjava1 as language java name 'testjava1.test()';

---------------------------------------------------------------------------------------------------------

在sqlplus中

c:\windows\system32>sqlplus nc5520110105/nc5520110105@192.168.10.87

sql*plus: release 11.2.0.1.0 production on fri apr 1 14:06:02 2011

凯发天生赢家一触即发官网 copyright (c) 1982, 2010, oracle.  all rights reserved.


connected to:
oracle database 10g enterprise edition release 10.2.0.1.0 - 64bit production
with the partitioning, olap and data mining options

sql> set serveroutput on;
sql> show serveroutput;
serveroutput on size unlimited format word_wrapped
sql> call dbms_java.set_output(2000);

call completed.

sql>
sql> show serveroutput;
serveroutput on size unlimited format word_wrapped
sql> exec testjava1();
hello

pl/sql procedure successfully completed.

sql>

---------------------------------------------------------------------------------------------------------

再看一个例子:

在pl/sql中执行:

--用java编写oracle存储过程。
create or replace and compile java source named test as
public class mytest
{
    public static void myproc(int a,int b,int[] ret){
       ret[0]=a b;
    }
    public static int myfunc(int a,int b){
       return a b;
    }
}

--创建存储过程
create or replace procedure myproc(a in number, b in number, ret out number) as
language java name 'mytest.myproc(int,int,int[])';
--创建函数
create or replace function myfunc(a in number, b in number) return number is
language java name 'mytest.myfunc(int,int) return int';

然后在sqlplus中测试存储过程——

sql> set serveroutput on
sql> declare a integer;
  2  begin
  3  myproc(1, 2, a);
  4  dbms_output.put_line(a);
  5  end;
  6  /
3

pl/sql procedure successfully completed.

 

sql> select myfunc(1,2) from dual;

myfunc(1,2)
-----------
          3

sql>



周锐 2011-06-22 12:38
]]>
ubuntu10.04中安装jdk-6u25http://www.blogjava.net/rain1102/archive/2011/06/08/351911.html周锐周锐wed, 08 jun 2011 06:05:00 gmthttp://www.blogjava.net/rain1102/archive/2011/06/08/351911.htmlhttp://www.blogjava.net/rain1102/comments/351911.htmlhttp://www.blogjava.net/rain1102/archive/2011/06/08/351911.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/351911.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/351911.html2. 进入/home/your_name/software下,执行chmod x jdk-6u25-linux-i586.bin
3. 继续执行./jdk-6u25-linux-i586.bin
4. 到/usr/lib下执行sudo mkdir jvm,然后进入/usr/lib/jvm执行sudo mkdir java
5. 到/usr/lib/jvm/java下执行mv /home/your_name/software/jdk1.6.0_25/* .
6. 执行sudo gedit /etc/environment
7. 在path中添加"/usr/lib/jvm/java/bin", 添加classpath=.:/usr/lib/jvm/java/lib和java_home=/usr/lib/jvm/java
8. 执行sudo update-alternatives --install /usr/bin/java java /usr/lib/jvm/java/bin/java 300
9. 执行sudo update-alternatives --install /usr/bin/javac javac /usr/lib/jvm/java/bin/javac 300
10. 执行sudo update-alternatives --config java
最后执行java -version

周锐 2011-06-08 14:05
]]>
使用ehcache对页面缓存http://www.blogjava.net/rain1102/archive/2011/05/12/350097.html周锐周锐thu, 12 may 2011 08:11:00 gmthttp://www.blogjava.net/rain1102/archive/2011/05/12/350097.htmlhttp://www.blogjava.net/rain1102/comments/350097.htmlhttp://www.blogjava.net/rain1102/archive/2011/05/12/350097.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/350097.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/350097.htmlthere are no code changes required for this - your application server should support servlet filtering already. simply update your web.xml file, re-deploy and you should see the speedup right away.

the basic steps you'll need to follow to configure ehcache for web page caching are (note that these steps assume you already have ehcache installed in your application):

  1. configure a servlet page filter in web.xml
  2. configure an appropriate cache in ehcache.xml
  3. start (or re-start) your application

the following settings should help you setup web caching for your application.

step 1 - add a filter to your web.xml

the first thing you'll need to do is add a filter to enable page caching.

the following web.xml settings will enable a servlet filter for page caching:



simplepagecachingfilter
net.sf.ehcache.constructs.web.filter.simplepagecachingfilter




simplepagecachingfilter
/*

step 2 - configure an ehcache.xml

the second step to enabling web page caching is to configure ehcache with an appropriate ehcache.xml.

the following ehcache.xml file should configure a reasonable default ehcache:



step 3 - start your application server

now start your application server. pages should be cached.



周锐 2011-05-12 16:11
]]>
chemtoolkits上线啦http://www.blogjava.net/rain1102/archive/2011/05/07/349748.html周锐周锐sat, 07 may 2011 11:02:00 gmthttp://www.blogjava.net/rain1102/archive/2011/05/07/349748.htmlhttp://www.blogjava.net/rain1102/comments/349748.htmlhttp://www.blogjava.net/rain1102/archive/2011/05/07/349748.html#feedback1http://www.blogjava.net/rain1102/comments/commentrss/349748.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/349748.html http://www.chemtoolkits.com

周锐 2011-05-07 19:02
]]>
当@pathvariable遇上中文和点http://www.blogjava.net/rain1102/archive/2011/05/05/349643.html周锐周锐thu, 05 may 2011 15:03:00 gmthttp://www.blogjava.net/rain1102/archive/2011/05/05/349643.htmlhttp://www.blogjava.net/rain1102/comments/349643.htmlhttp://www.blogjava.net/rain1102/archive/2011/05/05/349643.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/349643.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/349643.htmlspring mvc从3.0开始支持rest,而主要就是通过@pathvariable来处理请求参数和路径的映射。
由于考虑到seo的缘故,很多人喜欢把新闻的名称作为路径中的一部分去处理,这时候中文的名称就会遇到问题,没办法映射,这个是因为编码问题,只要到tomcat/conf下找到server.xml,添加uriencoding="utf-8"进行url编码设置就可以解决中文问题。
另外经常遇到路径中有点".",而点是特殊字符,比如.html, .do等等,所以spring mvc默认是把点后面的信息当作文件后缀,这时候我们就要修改这个默认值。
  
   
 


另外,这时候如果只设置这个,请求可以传递到对于的controller,但传过去的数据会有问题,只会传最后一个点前面的数据,除非你在最后加上“/”,比如/news/测试.点/  这样就会把“测试.点”当作整体,不然只会得到“测试”。这时候我们可以这样设置@requestmapping("/news/{title:.*}")
这样就一切ok啦。


周锐 2011-05-05 23:03
]]>
osra让图片上的结构式活起来http://www.blogjava.net/rain1102/archive/2011/04/22/348820.html周锐周锐fri, 22 apr 2011 09:49:00 gmthttp://www.blogjava.net/rain1102/archive/2011/04/22/348820.htmlhttp://www.blogjava.net/rain1102/comments/348820.htmlhttp://www.blogjava.net/rain1102/archive/2011/04/22/348820.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/348820.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/348820.htmlosra: optical structure recognition application 地址:http://cactus.nci.nih.gov/osra/
osra是一个很实用的工具,可以把图片上的结构转换为inchi,inchi-key,smiles,sdf数据。目前一些商业的编辑化学结构式软件已经把该功能引入到了各家的产品中了,chemaxon的marvin sketch就是其中一个,用户可以直接拷贝图片或者通过打开文件方式把图片上的结构式展现在编辑工具中。

另外nci提供了一个demo,地址
可以直接上传图片,然后会把图片中包含的化学结构式返回给你。非常强大!

另外一个好消息,从1.3.8开始,java可以通过jni去调用osra程序了,这样我们可以通过这个做很多有意思的事情,比如点击一个图片,直接去结构式搜索或者计算相关理化性质等等!

周锐 2011-04-22 17:49
]]>
通过使用opsin进行iupac名称到结构转换http://www.blogjava.net/rain1102/archive/2011/04/19/348596.html周锐周锐tue, 19 apr 2011 13:52:00 gmthttp://www.blogjava.net/rain1102/archive/2011/04/19/348596.htmlhttp://www.blogjava.net/rain1102/comments/348596.htmlhttp://www.blogjava.net/rain1102/archive/2011/04/19/348596.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/348596.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/348596.html 下载地址: http://bitbucket.org/dan2097/opsin/
下面我们直接看代码吧,很简单!

package com.founder.opsin;

import nu.xom.element;
import uk.ac.cam.ch.wwmm.opsin.nametoinchi;
import uk.ac.cam.ch.wwmm.opsin.nametostructure;
import uk.ac.cam.ch.wwmm.opsin.nametostructureconfig;
import uk.ac.cam.ch.wwmm.opsin.nametostructureexception;
import uk.ac.cam.ch.wwmm.opsin.opsinresult;

public class opsintest {

 /**
  * @param args
  * @author zhou rui
  * @throws nametostructureexception
  */
 public static void main(string[] args) throws nametostructureexception {
  nametostructure n2s = nametostructure.getinstance();
  
  nametostructureconfig n2sconfig = new nametostructureconfig();
  
  opsinresult result = n2s.parsechemicalname("acetonitrile", n2sconfig);
  
  system.out.println(result.getstatus());
  
  string smiles = result.getsmiles();
  string inchi = nametoinchi.convertresulttoinchi(result);
  system.out.println(smiles);
  system.out.println(inchi);
 }

}

输出结果如下:
success
c(c)#n
inchi=1/c2h3n/c1-2-3/h1h3



周锐 2011-04-19 21:52
]]>
通过rsession在java中启动rservehttp://www.blogjava.net/rain1102/archive/2011/04/13/348257.html周锐周锐wed, 13 apr 2011 14:45:00 gmthttp://www.blogjava.net/rain1102/archive/2011/04/13/348257.htmlhttp://www.blogjava.net/rain1102/comments/348257.htmlhttp://www.blogjava.net/rain1102/archive/2011/04/13/348257.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/348257.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/348257.html阅读全文

周锐 2011-04-13 22:45
]]>
chemtoolkits中分子描述符计算(molecular descriptor calculator)完成http://www.blogjava.net/rain1102/archive/2011/04/12/348175.html周锐周锐tue, 12 apr 2011 14:54:00 gmthttp://www.blogjava.net/rain1102/archive/2011/04/12/348175.htmlhttp://www.blogjava.net/rain1102/comments/348175.htmlhttp://www.blogjava.net/rain1102/archive/2011/04/12/348175.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/348175.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/348175.html阅读全文

周锐 2011-04-12 22:54
]]>
chemtoolkits(ctk)部分功能和界面http://www.blogjava.net/rain1102/archive/2011/04/09/347957.html周锐周锐sat, 09 apr 2011 09:16:00 gmthttp://www.blogjava.net/rain1102/archive/2011/04/09/347957.htmlhttp://www.blogjava.net/rain1102/comments/347957.htmlhttp://www.blogjava.net/rain1102/archive/2011/04/09/347957.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/347957.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/347957.html阅读全文

周锐 2011-04-09 17:16
]]>
chemtoolkits.com国内免费化学信息学服务平台http://www.blogjava.net/rain1102/archive/2011/04/06/347676.html周锐周锐wed, 06 apr 2011 02:06:00 gmthttp://www.blogjava.net/rain1102/archive/2011/04/06/347676.htmlhttp://www.blogjava.net/rain1102/comments/347676.htmlhttp://www.blogjava.net/rain1102/archive/2011/04/06/347676.html#feedback2http://www.blogjava.net/rain1102/comments/commentrss/347676.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/347676.html阅读全文

周锐 2011-04-06 10:06
]]>
chemical informatic tools developmenthttp://www.blogjava.net/rain1102/archive/2011/04/02/347502.html周锐周锐sat, 02 apr 2011 01:20:00 gmthttp://www.blogjava.net/rain1102/archive/2011/04/02/347502.htmlhttp://www.blogjava.net/rain1102/comments/347502.htmlhttp://www.blogjava.net/rain1102/archive/2011/04/02/347502.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/347502.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/347502.html1. property calculations (logp/logd, psa, solubility, pka, lipinski rule)

    计算插件(脂水分配系数/考虑电解时的脂水分配系数、极性表面积、溶解性、电解常数、lipinski五规则)

        all are supported except solubility, in jchembase, cartridge, knime, pipeline pilot, instant jchem, jchem for excel and in marvin. see full list of our calculating lipinski rule of 5:

2. bulid and maintain project data viewer (sar understanding)
sar: structure-activity relationship, 结果与活性关系,简称构效关系

       we have , also a viewer in jchem for excel, . that can be used for sar understanding.

3. library enumeration, cleanup, profile and analysis

, , , , , , knime, pipeline pilot
        some presentations on the topic:


4. customized spotfire view

        yes this is the tibco spotfire tool. marvin is integrated into spotfire, i think even jchem cartridge can communicate with spotfire, our new project is instant jchem integration which is under development

5.similarity search

        yes, jchembase, cartridge, instant jchem, jchem for excel
        for a more sophisticated approach of similarity, we provide .

6.clustering

       jklustor, libmcs

7.generate sar tables
生成构效关系表格

       we do not support directly but we have rgroup decomposition, fragmentation toolkit that can be visualized and analysed later.

8.ligand binding efficiency
配体结合效果

       le can be calculated if the database contains the activity value, heavy atom counts can be calculated in jchem for excel, instant jchem

9.structure visualization
结构可视化

       marvin

10.overlay/docking
叠合/对接

       no, we do not support docking. can be done in marvin,, and a standalone gui for low throughput screening.

11.build predictive admet models
建立预测admet模型。admet分别代表吸收、分布、代谢、排泄和毒性。

       we do not support directly, although we have some calculation plugins that can be further used for these property calculations such as pka, logp/d, atom counts, psa.



周锐 2011-04-02 09:20
]]>
java通过rserve调研r函数http://www.blogjava.net/rain1102/archive/2011/03/30/347261.html周锐周锐wed, 30 mar 2011 02:57:00 gmthttp://www.blogjava.net/rain1102/archive/2011/03/30/347261.htmlhttp://www.blogjava.net/rain1102/comments/347261.htmlhttp://www.blogjava.net/rain1102/archive/2011/03/30/347261.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/347261.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/347261.html 而java语言是目前最流行的语言,当然对我自己来说也是最熟悉的语言了。所以今天尝试通过java来调用r函数为下面通过调用数学函数实现业务功能做基础。
目前我在windows xp上做测试。
1. 首先需要下载r的windows安装程序,地址为,选择base进行下载。然后安装就可以了。
2. 安装rserve,可以通过r界面中的命令行输入:install.packages("rserve")或者在r界面上选择:程序包->安装程序包,然后找到rserve进行安装。
3. 启动rserve, 在r界面中的命令行中输入:library(rserve)来加载rserve,然后输入rserve()进行启动服务。
到此rserve已经配置并启动好,下面轮到java程序调用了。
1. 下载rserve提供的jar包,打开,下载和,然后放到自己的项目中,并引入。
2. 编辑代码如下:

 

import org.rosuda.rengine.rexp;
import org.rosuda.rengine.rexpmismatchexception;
import org.rosuda.rengine.rserve.rconnection;
import org.rosuda.rengine.rserve.rserveexception;

public class rtest {

 /**
  * @param args
  * @author zhou rui
  * @throws rserveexception
  * @throws rexpmismatchexception
  */
 public static void main(string[] args) throws rserveexception, rexpmismatchexception {
  rconnection c = new rconnection();
  rexp x = c.eval("r.version.string");
  system.out.println(x.asstring());
 }

}


运行,输入结果:
r version 2.12.2 (2011-02-25)

周锐 2011-03-30 10:57
]]>
java导出csv文件处理逗号http://www.blogjava.net/rain1102/archive/2011/03/29/347241.html周锐周锐tue, 29 mar 2011 14:27:00 gmthttp://www.blogjava.net/rain1102/archive/2011/03/29/347241.htmlhttp://www.blogjava.net/rain1102/comments/347241.htmlhttp://www.blogjava.net/rain1102/archive/2011/03/29/347241.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/347241.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/347241.html sb.append("\"" document.gettitle() "\"," document.getnumber() "," document.getversion() "," document.getapproveddatestring() "," document.getauthor().getrealname() "\n");


周锐 2011-03-29 22:27
]]>
generating pdfs for fun and profit with flying saucer and itexthttp://www.blogjava.net/rain1102/archive/2010/04/18/318651.html周锐周锐sun, 18 apr 2010 03:29:00 gmthttp://www.blogjava.net/rain1102/archive/2010/04/18/318651.htmlhttp://www.blogjava.net/rain1102/comments/318651.htmlhttp://www.blogjava.net/rain1102/archive/2010/04/18/318651.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/318651.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/318651.htmlhttp://today.java.net/pub/a/today/2007/06/26/generating-pdfs-with-flying-saucer-and-itext.html

周锐 2010-04-18 11:29
]]>
enable the jre plugin in chrome and firefox in ubuntu 9.04http://www.blogjava.net/rain1102/archive/2010/04/15/318392.html周锐周锐thu, 15 apr 2010 03:06:00 gmthttp://www.blogjava.net/rain1102/archive/2010/04/15/318392.htmlhttp://www.blogjava.net/rain1102/comments/318392.htmlhttp://www.blogjava.net/rain1102/archive/2010/04/15/318392.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/318392.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/318392.htmlguys, (ubuntu 9.04)

before all this make sure that you have java correctly installed. first i tried to installed java under my home directory, failed. i mean i though i have installed it, but it actually did not. (used exact same steps from www.java.com). then i tried to install it under /usr/ directory, failed. finally i tried to install it under /opt/, succeed. 

then i followed the same routine "symbolic link" stuff for both of my web browsers (firefox, chrome), succeed. :)

for chrome:
  >  mkdir /opt/google/chrome/plugins
  >  cd /opt/google/chrome/plugins
  >  ln -s /opt/java/jre1.6.0_17/lib/i386/libnpjp2.so 

for firefox:

>cd /plugins
>ln -s /opt/java/jre1.6.0_17/lib/i386/libnpjp2.so 

restart them!

hope it works


周锐 2010-04-15 11:06
]]>
jbpm4.2 tomcat6 oracle9i安装过程[转载]http://www.blogjava.net/rain1102/archive/2009/12/03/304687.html周锐周锐thu, 03 dec 2009 11:48:00 gmthttp://www.blogjava.net/rain1102/archive/2009/12/03/304687.htmlhttp://www.blogjava.net/rain1102/comments/304687.htmlhttp://www.blogjava.net/rain1102/archive/2009/12/03/304687.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/304687.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/304687.html 1.软件清单
   jdk1.6
   jbpm4.2
   tomcat6
   oracle9i
   ant1.7
   eclipse-jee-galileo-win32

2.配置jdk1.6
   在系统路径上添加
   java_home=c:\java\jdk16(我的jdk1.6安装目录)
   class_path=.;%java_home%\lib\tools.jar;%java_home%\lib\dt.jar;%java_home%\jre\lib\rt.jar;

3.配置ant
   在系统路径上添加
   ant_home=c:\java\ant
   path=%ant_home%\bin

4.配置数据库(使用oracle,默认使用的是hsqldb)
   (1)将class12.jar复制到jbpm-4.2\lib目录下,否则找不到驱动
   (2)进入c:\jbpm-4.2\install\jdbc目录修改文件oracle.properties文件,设置你自己的oracle数据库名、用户名和密码
      注意jbpm-4.2的根目录名称不能更改,否则无法运行ant
   (3)修改c:\jbpm-4.2\install\build.xml,修改为
   (4)进入c:\jbpm-4.2\install, 运行 ant create.jbpm.schema,将创建数据库脚本并在指定数据库中创建表
  
4.配置tomcat
   (1)复制apache-tomcat-6.0.20.zip文件到c:\jbpm-4.2\install\downloads目录中
   (2)进入c:\jbpm-4.2\install,运行ant  install.tomcat.
      完成后,在c:\jbpm-4.2目录下生成一个tomcat目录

5.配置eclipse
   (1)复制eclipse-jee-galileo-win32.zip文件到c:\jbpm-4.2\install\downloads目录中。
      注意:eclipse的名称必须是eclipse-jee-galileo-win32
   (2)进入c:\jbpm-4.2\install,运行ant  install.eclipse,运行时间较长
      完成后,在c:\jbpm-4.2目录下生成一个eclipse目录
   注意:如果没有不用ant配置eclipse,安装下面的gpd时,提示出错,点击确定后,gpd依然可以使用,不知道为什么。

6.配置流程设计器gpd
    启动eclipse,在eclipse里添加更新站点的方法:
       帮助 --> 安装新软件...
       点击 添加...
       在 添加站点 对话框中,单击 压缩包...
       找到 install/src/gpd/jbpm-gpd-site.zip 并点击 '打开'
       点击 确定 在 添加站点 对话框中,会返回到 '安装'对话框
       选择出现的 jpdl 4 gpd 更新站点,全部选中
       点击 下一步.. 然后点击 完成
       接受协议
       当它询问的时候重启eclipse
  

7.配置elcipse工程
   配置jbpm:
      点击 window --> preferences
      选择 jboss jbpm --> jbpm-4.2 --> runtime locations
      点击 add...
      在 add location 对话框中,输入一个名字,比如  jbpm-4.2 然后点击 search...
      在 browse for folder 对话框中,选择你的jbpm-4.2根目录,然后点击 ok
      点击 ok 在 add location 对话框中

8.定义一个用户库
  用户库用来放置jbpm的库文件。 如果你创建一个新工程, 只需要将用户库全部添加到build path
     点击窗口 --> 属性(windows --> preferences)
     选择java --> 创建路径 --> 用户类库(java --> build path --> user libraries)
     点击新建(new)
        类型名字jbpm libraries
     点击添加jars(add jars...)
     找到jbpm安装程序下的lib目录
     选择lib下的所有jar文件并点击打开(open)
     选择jbpm libraries作为入口
     重新点击添加jars(add jars)
     在jbpm的安装程序的根目录下选择jbpm.jar文件
     点击打开(open)
         在jbpm.jar下选择源码附件(source attachment)作为入口
     点击编辑(edit)
          在源码附件的配置(source attachment configuration)对话框中,点击目录(external folder...)
     找到jbpm安装程序下的src目录
     点击选择(choose)
     点击两次'确定'(ok)会关闭所有对话框

9.创建一个jbpm demo
创建一个例子,并将工作流程定义保存到数据库中
(1)创建一个java project,起名“ myjbpm ”,然后就可以单击“完成”了
(2)将c:\jbpm-4.2\examples\src中的所有配置文件复制到myjbpm工程中的根目录下
         jbpm.cfg.xml
         jbpm.hibernate.cfg.xml
         jbpm.mail.properties
         jbpm.mail.templates.examples.xml
         logging.properties

(3)修改jbpm.hibernate.cfg.xml
      hibernate.cfg.xml 的默认设置是用 hsql ,这是一个内存数据库,这种内存数据库用来代替项目实际所用的数据库来做单元测试挺不错的。不过我们这里是要试试用 mysql 、 oracle
mysql 的更改如下:
   org.hibernate.dialect.mysqldialect
   com.mysql.jdbc.driver
   jdbc:mysql://localhost:3306/jbpm
   root
   123456

oracle 的更改如下:
   org.hibernate.dialect.oracledialect
   oracle.jdbc.driver.oracledriver
   jdbc:oracle:thin:@192.168.123.10:1521:wxxrdb
   xiong
   xiong

(4)定义流程
   创建流程的定义文件是 pd.jpdl.xml,将下面代码复制到文件中
------------------------------------------------------------------------------------------



  
     
  

  
  
     
  


------------------------------------------------------------------------------------------

(5)布置jbpm

import junit.framework.testcase;
import org.jbpm.api.configuration;
import org.jbpm.api.executionservice;
import org.jbpm.api.historyservice;
import org.jbpm.api.managementservice;
import org.jbpm.api.processengine;
import org.jbpm.api.repositoryservice;
import org.jbpm.api.taskservice;

public class servicestest extends testcase {
   public void testobtainservicesanddeployprocess() {
     configuration configuration = new configuration();
     processengine processengine = configuration.buildprocessengine();
 
     repositoryservice repositoryservice = processengine.getrepositoryservice();
     executionservice executionservice = processengine.getexecutionservice();
     taskservice taskservice = processengine.gettaskservice();
     historyservice historyservice = processengine.gethistoryservice();
     managementservice managementservice = processengine.getmanagementservice();
  
     // 开始部署一个新的流程文件
     string deploymentid = repositoryservice.createdeployment().addresourcefromclasspath("pd.jpdl.xml").deploy();

   }
}

   无论是 mysql 还是 oracle ,
   jbpm4_deployment表,你会发现多了一条记录
   jbpm4_deployprop表会多了三条记录,对应id,key,version
   jbpm4_lob 表会多了一条记录,保存流程图


参考文献:
1.bestyanghui. jbpm4.1配置实用过程. http://blog.csdn.net/bestyanghui/archive/2009/10/12/4656914.aspx
2.熊熊之家. jbpm4开发步骤. http://hi.baidu.com/freshman0502/blog/item/092bab19ea68a873dab4bd91.html


周锐 2009-12-03 19:48
]]>
安装tomcat问题http://www.blogjava.net/rain1102/archive/2009/11/20/303075.html周锐周锐fri, 20 nov 2009 09:06:00 gmthttp://www.blogjava.net/rain1102/archive/2009/11/20/303075.htmlhttp://www.blogjava.net/rain1102/comments/303075.htmlhttp://www.blogjava.net/rain1102/archive/2009/11/20/303075.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/303075.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/303075.htmlfailed to install tomcat6 service check your settings and permissions 经过查看得知客户的机器上原先装了一个,然后直接删掉了tomcat安装目录而不是卸载的,所以服务里面还有tomcat的服务。所以需要删掉该服务才可以安装。

找到一个解压版本的tomcat放到任意目录,然后听过命令行进入到该目录下的bin目录里面,里面应该有个service.bat文件,执行service remove tomcat6,这样就删除服务了。下面就可以安装!

周锐 2009-11-20 17:06
]]>
javamail问题之exception in thread "main" java.lang.noclassdeffounderror: com/sun/mail/util/lineinputstreamhttp://www.blogjava.net/rain1102/archive/2009/11/17/302654.html周锐周锐tue, 17 nov 2009 03:05:00 gmthttp://www.blogjava.net/rain1102/archive/2009/11/17/302654.htmlhttp://www.blogjava.net/rain1102/comments/302654.htmlhttp://www.blogjava.net/rain1102/archive/2009/11/17/302654.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/302654.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/302654.htmlexception in thread "main" .lang.noclassdeffounderror: com/sun/mail/util/lineinputstream

凯发天生赢家一触即发官网的解决方案:

   javaee版本和javamail的版本不一致,请将sun公司上下载最新版本.http://java.sun.com/products/javamail/downloads/index.html
   例如:javamail 1.3以下的如果在javaee5上就会出现上面的错误,
   如果还出现此问题,则是因为javaee5中包含有javamail的类但是却不全面,所以出本身的javamail
   包冲突.用rar打开x:/program files/myeclipse 6.0/myeclipse/eclipse/plugins/com.genuitec.eclipse.j2eedt.core_x.x.x.zmyeclipsexxxxxxxxx/data/libraryset/ee_5/javaee.jar
,然后删除mail,一切就ok了.



周锐 2009-11-17 11:05
]]>
hibernate中主键增长步长为50的问题 oraclehttp://www.blogjava.net/rain1102/archive/2009/11/11/302019.html周锐周锐wed, 11 nov 2009 13:54:00 gmthttp://www.blogjava.net/rain1102/archive/2009/11/11/302019.htmlhttp://www.blogjava.net/rain1102/comments/302019.htmlhttp://www.blogjava.net/rain1102/archive/2009/11/11/302019.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/302019.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/302019.html原文地址:http://jhyimu2005.javaeye.com/blog/514379
先声明一下我用的框架是spring hibernate springmvc 数据库使用的是oracle
昨天遇到了一个特诡异的问题就是我使用oracle序列,把主键的计数交给hibernate处理, entity @table(name = "bio_study") public class study implements serializable{ private static final long serialversionuid = -5932941248053882057l; private int id; private project project; private string name; private string description; private set experiments; @id @column(name = "id") @sequencegenerator(name = "bio_study_sq", sequencename = "bio_study_sq" ) @generatedvalue(strategy = generationtype.sequence, generator = "bio_study_sq") public int getid() { return id; }


写完部署什么都没问题,可当我写了测试类进行测试时发现主键的初始值竟然是50,其步长亦是50,在同事的帮助下发现原来是hibernate在做鬼,@sequencegenerator中添加两个参数(allocationsize = 1, initialvalue = 1)就ok。通过查找hibernate的资料发现原来是因为allocationsize的默认值是50.具体请参考http://www.oracle.com/technology/global/cn/products/ias/toplink/jpa/resources/toplink-jpa-annotations.html#sequencegenerator

只需要增加allocationsize = 1就可以



周锐 2009-11-11 21:54
]]>
oracle调用javahttp://www.blogjava.net/rain1102/archive/2009/10/29/300146.html周锐周锐thu, 29 oct 2009 03:20:00 gmthttp://www.blogjava.net/rain1102/archive/2009/10/29/300146.htmlhttp://www.blogjava.net/rain1102/comments/300146.htmlhttp://www.blogjava.net/rain1102/archive/2009/10/29/300146.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/300146.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/300146.html前提是数据库上需要安装java虚拟机(jvm),使用下面的语句查看

select * from dba_registry where comp_id = 'javavm'

为空,则未安装,请执行 $oracle_home/javavm/install/initjvm.sql安装.
创建函数

create or replace function fn_oraclecall(marea in varchar2,mdevid in number,mport in number)
return varchar2
as
language name 'caller.call(java.lang.string,integer,integer) return .lang.string';

创建存储过程

create or replace procedure chk_setcab_num
(marea in varchar2,mdevid in number,mport in number,v_out out varchar2) is
begin
v_out := fn_oraclecall(marea,mdevid,mport);
end chk_setcab_num;

loadjava

loadjava -u sys/sys@sid  -oci8 -verbose -grant user -synonym -resolve -schema user d:\caller.jar

--这里也可以是class文件,注意兼容oracle的jre版本


注意编写的java文件里,即caller.java的call()方法,需要是staic



周锐 2009-10-29 11:20
]]>
cdk中根据smiles计算fingerprinter值http://www.blogjava.net/rain1102/archive/2009/10/26/299848.html周锐周锐mon, 26 oct 2009 14:24:00 gmthttp://www.blogjava.net/rain1102/archive/2009/10/26/299848.htmlhttp://www.blogjava.net/rain1102/comments/299848.htmlhttp://www.blogjava.net/rain1102/archive/2009/10/26/299848.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/299848.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/299848.htmlpackage com.founder.cdk;

import .util.bitset;

import org.openscience.cdk.defaultchemobjectbuilder;
import org.openscience.cdk.exception.cdkexception;
import org.openscience.cdk.exception.invalidsmilesexception;
import org.openscience.cdk.fingerprint.extendedfingerprinter;
import org.openscience.cdk.smiles.smilesparser;

public class fingerprintertest {

 /**
  * @param args
  * @throws cdkexception
  * @throws invalidsmilesexception
  */
 public static void main(string[] args) throws invalidsmilesexception, cdkexception {
  extendedfingerprinter fingerprinter = new extendedfingerprinter();
  smilesparser sp = new smilesparser(defaultchemobjectbuilder.getinstance());
  bitset bt = fingerprinter.getfingerprint(sp.parsesmiles("c2ccc1ccccc1c2"));
 }

}



周锐 2009-10-26 22:24
]]>
在python中使用openbabelhttp://www.blogjava.net/rain1102/archive/2009/10/25/299655.html周锐周锐sun, 25 oct 2009 04:37:00 gmthttp://www.blogjava.net/rain1102/archive/2009/10/25/299655.htmlhttp://www.blogjava.net/rain1102/comments/299655.htmlhttp://www.blogjava.net/rain1102/archive/2009/10/25/299655.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/299655.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/299655.html如果你的环境还没准备好, 可以官方网站看如何配置环境:http://openbabel.org/wiki/install_python_bindings
1. 通过使用obmol, obatom和obbond来创建原子和键
import openbabel

mol = openbabel.obmol()
print 'should print 0 (atoms)'
print mol.numatoms()

a = mol.newatom()
a.setatomicnum(6)   # carbon atom
a.setvector(0.0, 1.0, 2.0) # coordinates

b = mol.newatom()
mol.addbond(1, 2, 1)   # atoms indexed from 1
print 'should print 2 (atoms)'
print mol.numatoms()
print 'should print 1 (bond)'
print mol.numbonds()

mol.clear();

2. 通过obconversion来读取分子, 并输出不同格式文件或字符串值
import openbabel

obconversion = openbabel.obconversion()
obconversion.setinandoutformats("smi", "mdl")    //读取smiles值, 然后输出mdl值

mol = openbabel.obmol()
obconversion.readstring(mol, "c1=cc=cs1")

print 'should print 5 (atoms)'
print mol.numatoms()

mol.addhydrogens()
print 'should print 9 (atoms) after adding hydrogens'
print mol.numatoms()      //输出原子个数

outmdl = obconversion.writestring(mol)

3. 计算fp值
import pybel
smiles = ['cccc', 'cccn']
mols = [pybel.readstring("smi", x) for x in smiles]   # create two molecules from the smiles
fps = [x.calcfp() for x in mols]   # calculate their fingerprints
print fps[0].bits, fps[1].bits
print fps[0].fp[0]

mol2 = pybel.readstring('smi', 'c2ccc1ccccc1c2')
fp2 = mol2.calcfp("fp4")
print fp2
print fp2.bits

mol3 = pybel.readstring('smi', 'c1ccccc1')
fp3 = mol3.calcfp()

print fp3.__or__(fp2)  //计算相似度值

4. 读取sdf文件
#encoding=utf-8
import pybel
for mymol in pybel.readfile("sdf", "structures_all.sdf"):
    fp = mymol.calcfp("fp2")
    print fp

5. 输出txt文件和sdf文件

print mymol.write("smi")    //'cccc'
mymol.write("smi", "outputfile.txt")
largesdfile = outputfile("sdf", "multiplesd.sdf")
largesdfile.write(mymol)
largesdfile.write(myothermol)
largesdfile.close()



周锐 2009-10-25 12:37
]]>
使用cdk生成分子结构图http://www.blogjava.net/rain1102/archive/2009/10/22/299271.html周锐周锐thu, 22 oct 2009 00:51:00 gmthttp://www.blogjava.net/rain1102/archive/2009/10/22/299271.htmlhttp://www.blogjava.net/rain1102/comments/299271.htmlhttp://www.blogjava.net/rain1102/archive/2009/10/22/299271.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/299271.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/299271.htmlimport .awt.dimension;
import .awt.graphics2d;
import .awt.geom.rectangle2d;
import .awt.image.bufferedimage;
import .io.outputstream;
import .io.stringreader;
import .util.iterator;

import javax.servlet.http.httpservletresponse;
import javax.vecmath.point2d;

import org.apache.log4j.logger;
import org.openscience.cdk.molecule;
import org.openscience.cdk.interfaces.iatom;
import org.openscience.cdk.interfaces.imolecule;
import org.openscience.cdk.io.mdlreader;
import org.openscience.cdk.layout.structurediagramgenerator;
import org.openscience.cdk.renderer.renderer2dmodel;
import org.openscience.cdk.renderer.simplerenderer2d;

public class imagetypeexporterutil {
 private static final logger logger = logger.getlogger(imagetypeexporterutil.class);
 
 /**
  * show molecule structure to image type (png, jpeg)
  *
  * @param mol string molecule stucture
  * @param length width and height
  * @param response httpservletresponse object
  * @throws exception
  *             if occurred exception ,then throw exception
  */
 public static void showasimage(string stucture, integer length, httpservletresponse response) throws exception {
  logger.debug("imagetypeexporterutil.showasimage..");
  
  stringreader mdl = new stringreader(stucture);
  mdlreader cdkmdl = new mdlreader(mdl);
  molecule mol = new molecule();
  cdkmdl.read(mol);
  // null coordinates
  iterator itatoms = mol.atoms();
  while (itatoms.hasnext()) {
   iatom atom = itatoms.next();
   atom.setpoint2d(null);
   atom.setpoint3d(null);
  }
  // generate 2d coordinates
  structurediagramgenerator sdg = new structurediagramgenerator();
  sdg.setmolecule(mol);
  try {
   sdg.generatecoordinates();
  } catch (exception ex) {
   ex.printstacktrace();
  }
  imolecule layedoutmol = sdg.getmolecule();
  // scale molecule
  final double undef_pos = 100000;
  double minx = undef_pos, miny = undef_pos, maxx = undef_pos, maxy = undef_pos;
  itatoms = layedoutmol.atoms();
  while (itatoms.hasnext()) {
   iatom atom = itatoms.next();
   point2d point2d = atom.getpoint2d();
   if (minx == undef_pos || minx > point2d.x)
    minx = point2d.x;
   if (miny == undef_pos || miny > point2d.y)
    miny = point2d.y;
   if (maxx == undef_pos || maxx < point2d.x)
    maxx = point2d.x;
   if (maxy == undef_pos || maxy < point2d.y)
    maxy = point2d.y;
  }
  double scalex = length / (maxx - minx 1);
  double scaley = length / (maxy - miny 1);
  double scale = scalex > scaley ? scaley : scalex;
  double centrex = scale * (maxx minx) / 2.;
  double centrey = scale * (maxy miny) / 2.;
  double offsetx = length / 2. - centrex;
  double offsety = length / 2. - centrey;
  itatoms = layedoutmol.atoms();
  while (itatoms.hasnext()) {
   iatom atom = itatoms.next();
   point2d a = atom.getpoint2d();
   point2d b = new point2d();
   b.x = a.x * scale offsetx;
   b.y = a.y * scale offsety;
   atom.setpoint2d(b);
  }
  // set rendering properties
  renderer2dmodel r2dm = new renderer2dmodel();
  r2dm.setdrawnumbers(false);
  r2dm.setuseantialiasing(true);
  r2dm.setcoloratomsbytype(true);
  r2dm.setshowatomtypenames(false);
  r2dm.setshowaromaticity(true);
  r2dm.setshowimplicithydrogens(false);
  r2dm.setshowreactionboxes(false);
  r2dm.setkekulestructure(false);
  dimension dim = new dimension();
  dim.setsize(length, length);
  r2dm.setbackgrounddimension(dim);
  r2dm.setbackcolor(java.awt.color.white);
  // render the image
  simplerenderer2d renderer = new simplerenderer2d();
  renderer.setrenderer2dmodel(r2dm);
  bufferedimage bufferedimage = new bufferedimage(length, length,
    bufferedimage.type_int_rgb);
  graphics2d graphics = bufferedimage.creategraphics();
  graphics.setpaint(java.awt.color.white);
  rectangle2d.float rectangle = new rectangle2d.float(0, 0, length, length);
  graphics.fill(rectangle);
  renderer.paintmolecule(layedoutmol, graphics);
  // write the image to response
  response.setcontenttype("image/png");
  outputstream out = response.getoutputstream();
  try {
   javax.imageio.imageio.write(bufferedimage, "png", out);
  } finally {
   out.close();
  }
 }
}



周锐 2009-10-22 08:51
]]>
使用cdk进行子结构搜索http://www.blogjava.net/rain1102/archive/2009/10/20/298919.html周锐周锐tue, 20 oct 2009 00:33:00 gmthttp://www.blogjava.net/rain1102/archive/2009/10/20/298919.htmlhttp://www.blogjava.net/rain1102/comments/298919.htmlhttp://www.blogjava.net/rain1102/archive/2009/10/20/298919.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/298919.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/298919.html

package com.founder.cdk;

import .io.file;
import .io.filenotfoundexception;
import .io.filereader;
import .util.arraylist;
import .util.list;

import org.openscience.cdk.chemfile;
import org.openscience.cdk.chemobject;
import org.openscience.cdk.exception.cdkexception;
import org.openscience.cdk.interfaces.iatomcontainer;
import org.openscience.cdk.io.mdlv2000reader;
import org.openscience.cdk.smiles.smarts.smartsquerytool;
import org.openscience.cdk.tools.manipulator.chemfilemanipulator;

public class smartsquerytooltest {

 static smartsquerytool sqt;static {
        try {
            sqt = new smartsquerytool("c2ccc1ccccc1c2");
        } catch (cdkexception e) {           
        }
    }

 /**
  * @param args
  */
 public static void main(string[] args) {
  string filename = "h:\\molecules.sdf";
  try {
            mdlv2000reader reader = new mdlv2000reader(new filereader(new file(filename)));
            chemfile chemfile = (chemfile) reader.read((chemobject) new chemfile());
            list containerslist = chemfilemanipulator.getallatomcontainers(chemfile);
           
            list substructurelist = new arraylist();
            
            sqt.setsmarts("c1ccc3c(c1)ccc4c2ccccc2ccc34");  //重新设置匹配的smiles值
            boolean matched = false;
            for (iatomcontainer molecule : containerslist) {
                matched = sqt.matches(molecule);
                if (matched){
                 substructurelist.add(molecule);
                }
            }
            system.out.println(substructurelist.size());
           
            for (iatomcontainer molecule : substructurelist) {
                 system.out.println(molecule.getproperty("id"));
            }
           
        } catch (cdkexception e) {
            e.printstacktrace();
        } catch (filenotfoundexception e) {
           e.printstacktrace();
        }

 }

}

通过测试, matches方法速度很慢, 一般一个结构需要200ms-1000ms左右.



周锐 2009-10-20 08:33
]]>
使用cdk解析sdf文件http://www.blogjava.net/rain1102/archive/2009/10/19/298802.html周锐周锐mon, 19 oct 2009 01:45:00 gmthttp://www.blogjava.net/rain1102/archive/2009/10/19/298802.htmlhttp://www.blogjava.net/rain1102/comments/298802.htmlhttp://www.blogjava.net/rain1102/archive/2009/10/19/298802.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/298802.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/298802.htmlpackage com.founder.cdk;

import .io.file;
import .io.filenotfoundexception;
import .io.filereader;
import .util.list;

import org.openscience.cdk.chemfile;
import org.openscience.cdk.chemobject;
import org.openscience.cdk.molecule;
import org.openscience.cdk.exception.cdkexception;
import org.openscience.cdk.interfaces.iatomcontainer;
import org.openscience.cdk.io.mdlreader;
import org.openscience.cdk.io.mdlv2000reader;
import org.openscience.cdk.tools.manipulator.chemfilemanipulator;

public class readsdftest {

 /**
  * @param args
  * @throws cdkexception
  * @throws filenotfoundexception
  */
 public static void main(string[] args) throws cdkexception, filenotfoundexception {
  string filename = "h:\\molecules.sdf";
       
//  inputstream ins = readsdftest.class.getclassloader().getresourceasstream(filename);
//  mdlreader reader = new mdlreader(ins);

   //alternatively, you can specify a file directly
   mdlv2000reader reader = new mdlv2000reader(new filereader(new file(filename)));

  chemfile chemfile = (chemfile)reader.read((chemobject)new chemfile());
  
  list containerslist = chemfilemanipulator.getallatomcontainers(chemfile);
  
  molecule molecule = null;
  for (iatomcontainer mol : containerslist) {
   molecule = (molecule) mol;
   system.out.println(molecule.getproperties());
   system.out.println(molecule.getproperty("cd_molweight"));
//   fingerprinter fp = new fingerprinter();
//   bitset bt = fp.getfingerprint(molecule);
//   system.out.println(bt);
  }
 }

}



周锐 2009-10-19 09:45
]]>
使用cdk进行相似度搜索http://www.blogjava.net/rain1102/archive/2009/10/19/298801.html周锐周锐mon, 19 oct 2009 01:37:00 gmthttp://www.blogjava.net/rain1102/archive/2009/10/19/298801.htmlhttp://www.blogjava.net/rain1102/comments/298801.htmlhttp://www.blogjava.net/rain1102/archive/2009/10/19/298801.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/298801.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/298801.htmlpackage com.founder.cdk;

import .io.stringreader;
import .sql.connection;
import .sql.resultset;
import .sql.sqlexception;
import .util.arraylist;
import .util.bitset;
import .util.list;

import org.openscience.cdk.molecule;
import org.openscience.cdk.exception.cdkexception;
import org.openscience.cdk.fingerprint.fingerprinter;
import org.openscience.cdk.io.mdlreader;
import org.openscience.cdk.similarity.tanimoto;

public class cdktest {

 /**
  * @param args
  */
 public static void main(string[] args) {
  
  // mysql
  long t1 = system.currenttimemillis();
  try {
   class.forname("com.mysql.jdbc.driver").newinstance();
   connection con = .sql.drivermanager
     .getconnection(
       "jdbc:mysql://localhost/coocoo?useunicode=true&characterencoding=utf-8&zerodatetimebehavior=converttonull",
       "root", "root");
   

   resultset results = null;
   string querysql = "select id, structure from structure ";
   
   results = con.createstatement().executequery(querysql);
 
   // dump out the results

   list list = new arraylist();
   fingerprinter fp = new fingerprinter();
   bitset bt = null;
   while (results.next()) {
    long id = results.getlong("id");
    
    //根据结构数据生成分子对象
    stringreader mdl = new stringreader(results.getstring("structure"));
    mdlreader cdkmdl = new mdlreader(mdl);
    molecule molecule = new molecule();
    cdkmdl.read(molecule);

    if (id == 1220) {
     bt = fp.getfingerprint(molecule);
    }
    list.add(molecule);
    
   } 
   system.out.println("size:=" list.size());
   
   list resultlist = new arraylist();
        
         long t2 = system.currenttimemillis();
         system.out.println("thread: collection data in " (t2 - t1) " ms.");
         for (molecule molecule : list) {
             try {
                 float coefficient = tanimoto.calculate(fp.getfingerprint(molecule), bt);  //计算相似度
                 if (coefficient > 0.9) {
                  resultlist.add(molecule);
                 }
             } catch (cdkexception e) {

             }
         }
         long t3 = system.currenttimemillis();
        
         system.out.println(resultlist.size());
         system.out.println("thread: search in " (t3 - t2) " ms.");
        
   con.close();
  } catch (instantiationexception e) {
   e.printstacktrace();
  } catch (illegalaccessexception e) {
   e.printstacktrace();
  } catch (classnotfoundexception e) {
   e.printstacktrace();
  } catch (sqlexception e) {
   e.printstacktrace();
  } catch (cdkexception e) {
   e.printstacktrace();
  }
  long t4 = system.currenttimemillis();
        system.out.println("thread: all in " (t4 - t1) " ms.");
 }

}



周锐 2009-10-19 09:37
]]>
faster fingerprint search with java & cdkhttp://www.blogjava.net/rain1102/archive/2009/10/18/298745.html周锐周锐sun, 18 oct 2009 06:09:00 gmthttp://www.blogjava.net/rain1102/archive/2009/10/18/298745.htmlhttp://www.blogjava.net/rain1102/comments/298745.htmlhttp://www.blogjava.net/rain1102/archive/2009/10/18/298745.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/298745.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/298745.html

 wrote a great serious posts named fast substructure search using open source tools providing details on substructure search with mysql. but, however, poor binary data operation functions of mysql limited the implementation of similar structure search which typically depends on the calculation of tanimato coefficient. we are going to use & cdk to add this feature.

as default output of cdk fingerprint,  with  interface is perfect data format of fingerprint data storage. itself provides several collections such as , , class in package .util. to provide web access to the search engine, thread unsafe arraylist and linkedlist have to be kicked out. how about vector? once all the fingerprint data is well prepared, the collection  function we need to do similarity search is just iteration. no add, no delete. so, a light weight array is enough.

most of the molecule information is stored in mysql database, so we are going to map fingerprint to corresponding row in data table. here is the moldfdata class, we use a long variable to store corresponding primary key in data table.

public class moldfdata implements serializable {
    private long id;
   private bitset fingerprint;
    public moldfdata(long id, bitset fingerprint) {
        this.id = id;
        this.fingerprint = fingerprint;
    }
    public long getid() {
        return id;
    }
    public void setid(long id) {
        this.id = id;
    }
    public bitset getfingerprint() {
        return fingerprint;
    }
    public void setfingerprint(bitset fingerprint) {
        this.fingerprint = fingerprint;
    }
}

this is how we storage our fingerprints.

private molfpdata[] arraydata;

no big deal with similarity search. just calculate the tanimoto coefficient, if it’s bigger than minimal  similarity you set, add this one into result.

    public list searchtanimoto(bitset bt, float minsimlarity) {

        list resultlist = new linkedlist();
        int i;
        for (i = 0; i < arraydata.length; i ) {
            moldfdata alistdata = arraydata[i];
            try {
                float coefficient = tanimoto.calculate(alistdata.getfingerprint(), bt);
                if (coefficient > minsimlarity) {
                    resultlist.add(new searchresultdata(alistdata.getid(), coefficient));
                }
            } catch (cdkexception e) {
            }
            collections.sort(resultlist);
        }
        return resultlist;
    }
pretty ugly code?  maybe. but it really works, at a acceptable speed.

tests were done using the code blow on a macbook(intel core due 1.83 ghz, 2g ram).

long t3 = system.currenttimemillis();
list listresult = se.searchtanimoto(bs, 0.8f);
long t4 = system.currenttimemillis();
system.out.println("thread: search done in "   (t4 - t3)   " ms.");

in my database of 87364 commercial compounds, it takes 335 ms.



周锐 2009-10-18 14:09
]]>
cdk中的相似度搜索http://www.blogjava.net/rain1102/archive/2009/10/18/298744.html周锐周锐sun, 18 oct 2009 05:36:00 gmthttp://www.blogjava.net/rain1102/archive/2009/10/18/298744.htmlhttp://www.blogjava.net/rain1102/comments/298744.htmlhttp://www.blogjava.net/rain1102/archive/2009/10/18/298744.html#feedback0http://www.blogjava.net/rain1102/comments/commentrss/298744.htmlhttp://www.blogjava.net/rain1102/services/trackbacks/298744.html/*  $rcsfile$
 *  $author$
 *  $date$
 *  $revision$
 *
 *  凯发天生赢家一触即发官网 copyright (c) 1997-2007  the chemistry development kit (cdk) project
 *
 *  contact: cdk-devel@lists.sourceforge.net
 *
 *  this program 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.
 *  all we ask is that proper credit is given for our work, which includes
 *  - but is not limited to - adding the above 凯发天生赢家一触即发官网 copyright notice to the beginning
 *  of your source code files, and to any 凯发天生赢家一触即发官网 copyright notice that you may distribute
 *  with programs based on this work.
 *
 *  this program 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 program; if not, write to the free software
 *  foundation, inc., 51 franklin st, fifth floor, boston, ma 02110-1301 usa.
 *
 */
package org.openscience.cdk.similarity;


import org.openscience.cdk.annotations.testclass;
import org.openscience.cdk.annotations.testmethod;
import org.openscience.cdk.exception.cdkexception;

import .util.bitset;

/**
 *  calculates the tanimoto coefficient for a given pair of two
 *  fingerprint bitsets or real valued feature vectors.
 *
 *  the tanimoto coefficient is one way to
 *  quantitatively measure the "distance" or similarity of
 *  two chemical structures.
 *
 * 

you can use the fingerprinter class to retrieve two fingerprint bitsets.
 *  we assume that you have two structures stored in cdk.molecule objects.
 *  a tanimoto coefficient can then be calculated like:
 * 


 *   bitset fingerprint1 = fingerprinter.getfingerprint(molecule1);
 *   bitset fingerprint2 = fingerprinter.getfingerprint(molecule2);
 *   float tanimoto_coefficient = tanimoto.calculate(fingerprint1, fingerprint2);
 * 

 *
 * 

the fingerprinter assumes that hydrogens are explicitely given, if this
 *  is desired!
 * 

note that the continuous tanimoto coefficient does not lead to a metric space
 *
 *@author         steinbeck
 * @cdk.githash
 *@cdk.created    2005-10-19
 *@cdk.keyword    jaccard
 *@cdk.keyword    similarity, tanimoto
 * @cdk.module fingerprint
 */
@testclass("org.openscience.cdk.similarity.tanimototest")
public class tanimoto
{

    /**
     * evaluates tanimoto coefficient for two bit sets.
     *
     * @param bitset1 a bitset (such as a fingerprint) for the first molecule
     * @param bitset2 a bitset (such as a fingerprint) for the second molecule
     * @return the tanimoto coefficient
     * @throws org.openscience.cdk.exception.cdkexception  if bitsets are not of the same length
     */
    @testmethod("testtanimoto1,testtanimoto2")
    public static float calculate(bitset bitset1, bitset bitset2) throws cdkexception
    {
        float _bitset1_cardinality = bitset1.cardinality();
        float _bitset2_cardinality = bitset2.cardinality();
        if (bitset1.size() != bitset2.size()) {
            throw new cdkexception("bisets must have the same bit length");
        }
        bitset one_and_two = (bitset)bitset1.clone();
        one_and_two.and(bitset2);
        float _common_bit_count = one_and_two.cardinality();
        return _common_bit_count/(_bitset1_cardinality _bitset2_cardinality - _common_bit_count);
    }
   
    /**
     * evaluates the continuous tanimoto coefficient for two real valued vectors.
     *
     * @param features1 the first feature vector
     * @param features2 the second feature vector
     * @return the continuous tanimoto coefficient
     * @throws org.openscience.cdk.exception.cdkexception  if the features are not of the same length
     */
    @testmethod("testtanimoto3")
    public static float calculate(double[] features1, double[] features2) throws cdkexception {

        if (features1.length != features2.length) {
            throw new cdkexception("features vectors must be of the same length");
        }

        int n = features1.length;
        double ab = 0.0;
        double a2 = 0.0;
        double b2 = 0.0;

        for (int i = 0; i < n; i ) {
            ab = features1[i] * features2[i];
            a2 = features1[i]*features1[i];
            b2 = features2[i]*features2[i];
        }
        return (float)ab/(float)(a2 b2-ab);
    }
}

通过源码可以看出calculate(bitset bitset1, bitset bitset2)方法,是通过比较两个分子的fingerprint的位,来计算相似度.通过bitset的and操作得到共同的个数,然后在除以总共为true的个数,这样就得到相似值.



周锐 2009-10-18 13:36
]]>
网站地图