You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(14) |
Sep
(76) |
Oct
(65) |
Nov
(177) |
Dec
(147) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(257) |
Feb
(313) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <tr...@us...> - 2003-02-12 09:23:09
|
Update of /cvsroot/basedb/basedb/sql In directory sc8-pr-cvs1:/tmp/cvs-serv26305 Modified Files: base_mysql.sql Log Message: Added missing auto_increment on BioAssaySetExtraColumn.position Index: base_mysql.sql =================================================================== RCS file: /cvsroot/basedb/basedb/sql/base_mysql.sql,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** base_mysql.sql 2 Feb 2003 18:16:45 -0000 1.2 --- base_mysql.sql 12 Feb 2003 09:23:06 -0000 1.3 *************** *** 246,252 **** bioAssaySet int(11) NOT NULL default '0', extraDataColumn int(11) NOT NULL default '0', ! position tinyint(4) NOT NULL default '0', ! PRIMARY KEY (bioAssaySet,extraDataColumn), ! UNIQUE KEY setpos (bioAssaySet,position) ) TYPE=MyISAM; --- 246,252 ---- bioAssaySet int(11) NOT NULL default '0', extraDataColumn int(11) NOT NULL default '0', ! position tinyint(4) NOT NULL auto_increment, ! PRIMARY KEY (bioAssaySet,position), ! UNIQUE KEY setcol (bioAssaySet,extraDataColumn) ) TYPE=MyISAM; |
From: <ku...@us...> - 2003-02-12 07:58:45
|
Update of /cvsroot/basedb/basedb/plugins/src/normalizers In directory sc8-pr-cvs1:/tmp/cvs-serv26913 Modified Files: lowess.cc Log Message: Removed trash character. Index: lowess.cc =================================================================== RCS file: /cvsroot/basedb/basedb/plugins/src/normalizers/lowess.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lowess.cc 12 Feb 2003 07:34:06 -0000 1.2 --- lowess.cc 12 Feb 2003 07:58:41 -0000 1.3 *************** *** 1,3 **** ! ]// // BioArray Software Environment (BASE) - homepage http://base.thep.lu.se/ // Copyright (C) 2002,2003 Björn Samuelsson --- 1,3 ---- ! // // BioArray Software Environment (BASE) - homepage http://base.thep.lu.se/ // Copyright (C) 2002,2003 Björn Samuelsson |
From: <tr...@us...> - 2003-02-12 07:34:11
|
Update of /cvsroot/basedb/basedb/plugins/src/normalizers In directory sc8-pr-cvs1:/tmp/cvs-serv15707/normalizers Modified Files: lowess.cc lowess.hh Log Message: fix: point_fitted_beg updated even for tiny window size, updated (c) notice Index: lowess.cc =================================================================== RCS file: /cvsroot/basedb/basedb/plugins/src/normalizers/lowess.cc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lowess.cc 1 Feb 2003 12:52:52 -0000 1.1 --- lowess.cc 12 Feb 2003 07:34:06 -0000 1.2 *************** *** 1,6 **** ! // // BioArray Software Environment (BASE) - homepage http://base.thep.lu.se/ ! // Copyright (C) 2002 Lao Saal, Carl Troein, Johan Vallon-Christersson, ! // Björn Samuelsson // // This file is part of BASE. --- 1,5 ---- ! ]// // BioArray Software Environment (BASE) - homepage http://base.thep.lu.se/ ! // Copyright (C) 2002,2003 Björn Samuelsson // // This file is part of BASE. *************** *** 111,114 **** --- 110,114 ---- if(np_window <= 2){ copy(y_beg, y_beg + npoints, y_fit_beg); + fill(point_fitted_beg, point_fitted_beg + npoints, true); return; } Index: lowess.hh =================================================================== RCS file: /cvsroot/basedb/basedb/plugins/src/normalizers/lowess.hh,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lowess.hh 1 Feb 2003 12:52:52 -0000 1.1 --- lowess.hh 12 Feb 2003 07:34:06 -0000 1.2 *************** *** 1,6 **** // // BioArray Software Environment (BASE) - homepage http://base.thep.lu.se/ ! // Copyright (C) 2002 Lao Saal, Carl Troein, Johan Vallon-Christersson, ! // Björn Samuelsson // // This file is part of BASE. --- 1,5 ---- // // BioArray Software Environment (BASE) - homepage http://base.thep.lu.se/ ! // Copyright (C) 2002 Björn Samuelsson // // This file is part of BASE. |
From: <ku...@us...> - 2003-02-12 01:06:54
|
Update of /cvsroot/basedb/basedb In directory sc8-pr-cvs1:/tmp/cvs-serv5388 Modified Files: README Log Message: Unfinished configure/make information. Index: README =================================================================== RCS file: /cvsroot/basedb/basedb/README,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** README 25 Jan 2003 00:46:51 -0000 1.19 --- README 12 Feb 2003 01:06:49 -0000 1.20 *************** *** 184,187 **** --- 184,206 ---- Compiling the C++ parts of BASE: + + + Compile with the following commands: + + i) For CVS users: + ./autogen.sh + Others, untar distribution: + tar zxpf .... + + ii) Do the following + ./configure --prefix=/home/jari/tmp/base + make + + iii) To install, compiled stuff and the rest of the needed BASE stuff + make install + + iv) Fix configuration files. + + The plugins that come with BASE, as well as some programs that required to run the plugins, are written in C++. To compile them, you need a decent C++ |
From: <ku...@us...> - 2003-02-12 00:59:09
|
Update of /cvsroot/basedb/basedb In directory sc8-pr-cvs1:/tmp/cvs-serv2581 Modified Files: Makefile.am configure.ac Log Message: Added more directories to configure/autmake/autoconf. Index: Makefile.am =================================================================== RCS file: /cvsroot/basedb/basedb/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 6 Feb 2003 00:43:33 -0000 1.1 --- Makefile.am 12 Feb 2003 00:59:05 -0000 1.2 *************** *** 1,3 **** ! # $Id$ ! SUBDIRS = src plugins --- 1,9 ---- ! ## Process this file with automake to produce Makefile.in ! ## ! ## $Id$ ! SUBDIRS = src plugins include www ! ! prefixdir = $(prefix) ! ! prefix_DATA = example_config.inc.php Index: configure.ac =================================================================== RCS file: /cvsroot/basedb/basedb/configure.ac,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** configure.ac 6 Feb 2003 01:33:05 -0000 1.2 --- configure.ac 12 Feb 2003 00:59:05 -0000 1.3 *************** *** 336,339 **** --- 336,345 ---- #AC_OUTPUT AC_OUTPUT([Makefile + include/Makefile + include/classes/Makefile + include/common/Makefile + include/drivers/Makefile + include/local_distr/Makefile + include/web/Makefile plugins/Makefile plugins/src/Makefile *************** *** 349,351 **** src/jobRunner/Makefile src/lib/Makefile ! src/sectionCounter/Makefile]) --- 355,360 ---- src/jobRunner/Makefile src/lib/Makefile ! src/sectionCounter/Makefile ! www/Makefile ! www/img/Makefile ! www/plotapplet/Makefile]) |
From: <ku...@us...> - 2003-02-12 00:54:50
|
Update of /cvsroot/basedb/basedb/include/web In directory sc8-pr-cvs1:/tmp/cvs-serv1348/web Added Files: Makefile.am Log Message: Preparing for configure/automake/autoconf. --- NEW FILE: Makefile.am --- ## Process this file with automake to produce Makefile.in ## ## $Id: Makefile.am,v 1.1 2003/02/12 00:54:47 kurri Exp $ includewebdir = $(prefix)/include/web includeweb_SCRIPTS = \ array_common.inc.php assay_common.inc.php clust_common.inc.php \ experiment_common.inc.php gene_common.inc.php help.inc.php \ help_long.inc.php help_short.inc.php htmlinit.inc.php \ hyb_common.inc.php init.inc.php item_common.inc.php \ label_common.inc.php links_common.inc.php login.inc.php \ newinit.inc.php plate_common.inc.php plotter.inc.php \ probe_common.inc.php program_common.inc.php protocol_common.inc.php \ raw_common.inc.php reporterlist_common.inc.php searchhtml.inc.php \ upload_common.inc.php user_common.inc.php ware_common.inc.php |
From: <ku...@us...> - 2003-02-12 00:54:50
|
Update of /cvsroot/basedb/basedb/include/local_distr In directory sc8-pr-cvs1:/tmp/cvs-serv1348/local_distr Added Files: Makefile.am Log Message: Preparing for configure/automake/autoconf. --- NEW FILE: Makefile.am --- ## Process this file with automake to produce Makefile.in ## ## $Id: Makefile.am,v 1.1 2003/02/12 00:54:47 kurri Exp $ includelocaldir = $(prefix)/include/local includelocal_HEADERS = raw_columns.inc.php reporter_columns.inc.php |
From: <ku...@us...> - 2003-02-12 00:54:50
|
Update of /cvsroot/basedb/basedb/include/drivers In directory sc8-pr-cvs1:/tmp/cvs-serv1348/drivers Added Files: Makefile.am Log Message: Preparing for configure/automake/autoconf. --- NEW FILE: Makefile.am --- ## Process this file with automake to produce Makefile.in ## ## $Id: Makefile.am,v 1.1 2003/02/12 00:54:46 kurri Exp $ includedriversdir = $(prefix)/include/drivers includedrivers_HEADERS = mysql.inc.php pgsql.inc.php |
From: <ku...@us...> - 2003-02-12 00:54:49
|
Update of /cvsroot/basedb/basedb/include/common In directory sc8-pr-cvs1:/tmp/cvs-serv1348/common Added Files: Makefile.am Log Message: Preparing for configure/automake/autoconf. --- NEW FILE: Makefile.am --- ## Process this file with automake to produce Makefile.in ## ## $Id: Makefile.am,v 1.1 2003/02/12 00:54:46 kurri Exp $ includecommondir = $(prefix)/include/common includecommon_HEADERS = \ basefile_replist.inc.php misc.inc.php basefile_spots.inc.php \ db.inc.php common.inc.php extracols.inc.php mime.inc.php |
From: <ku...@us...> - 2003-02-12 00:54:49
|
Update of /cvsroot/basedb/basedb/include/classes In directory sc8-pr-cvs1:/tmp/cvs-serv1348/classes Added Files: Makefile.am Log Message: Preparing for configure/automake/autoconf. --- NEW FILE: Makefile.am --- ## Process this file with automake to produce Makefile.in ## ## $Id: Makefile.am,v 1.1 2003/02/12 00:54:46 kurri Exp $ includeclassesdir = $(prefix)/include/classes includeclasses_HEADERS = \ acquisition.inc.php array.inc.php basecontrol.inc.php \ basefile.inc.php bioassay.inc.php bioassayset.inc.php \ display.inc.php eventlog.inc.php experiment.inc.php extract.inc.php \ ftpd.inc.php hyb.inc.php image.inc.php item.inc.php \ jobhandler.inc.php job.inc.php labeled.inc.php label.inc.php \ news.inc.php plate.inc.php platetype.inc.php plot.inc.php \ printmap.inc.php program.inc.php protocol.inc.php raw.inc.php \ reporter.inc.php reporterlist.inc.php sampleannotation.inc.php \ sample.inc.php sampletissue.inc.php search.inc.php session.inc.php \ spotimage.inc.php transformation.inc.php upload.inc.php user.inc.php \ ware.inc.php wizzzard.inc.php |
From: <ku...@us...> - 2003-02-12 00:54:49
|
Update of /cvsroot/basedb/basedb/include In directory sc8-pr-cvs1:/tmp/cvs-serv1348 Added Files: Makefile.am Log Message: Preparing for configure/automake/autoconf. --- NEW FILE: Makefile.am --- ## Process this file with automake to produce Makefile.in ## ## $Id: Makefile.am,v 1.1 2003/02/12 00:54:46 kurri Exp $ SUBDIRS = classes common drivers local_distr web |
From: <ku...@us...> - 2003-02-12 00:23:39
|
Update of /cvsroot/basedb/basedb/www/img In directory sc8-pr-cvs1:/tmp/cvs-serv22544a/img Added Files: Makefile.am Log Message: Preparing for configure/automake/autoconf. --- NEW FILE: Makefile.am --- ## Process this file with automake to produce Makefile.in ## ## $Id: Makefile.am,v 1.1 2003/02/12 00:23:34 kurri Exp $ wwwimgdir = $(prefix)/www/img wwwimg_DATA = \ 1.gif ell.gif ex_t.gif newlogo.png p384_4.gif sti.gif baselogo.jpg \ ex_i.gif help.png p384_1.gif s0.gif stl.gif baseplotlogo.png \ ex_l.gif helps.png p384_2.gif s1.gif stt.gif ex_o.gif p384_3.gif \ s2.gif |
From: <ku...@us...> - 2003-02-12 00:23:39
|
Update of /cvsroot/basedb/basedb/www/plotapplet In directory sc8-pr-cvs1:/tmp/cvs-serv22544a/plotapplet Added Files: Makefile.am Log Message: Preparing for configure/automake/autoconf. --- NEW FILE: Makefile.am --- ## Process this file with automake to produce Makefile.in ## ## $Id: Makefile.am,v 1.1 2003/02/12 00:23:34 kurri Exp $ wwwplotappletdir = $(prefix)/www/plotapplet wwwplotapplet_DATA = \ plot_assay.phtml plot_raw.phtml show_tmp.phtml plot.jar \ read_data.phtml store_tmp.phtml |
From: <ku...@us...> - 2003-02-12 00:23:39
|
Update of /cvsroot/basedb/basedb/www In directory sc8-pr-cvs1:/tmp/cvs-serv22544a Added Files: Makefile.am Log Message: Preparing for configure/automake/autoconf. --- NEW FILE: Makefile.am --- ## Process this file with automake to produce Makefile.in ## ## $Id: Makefile.am,v 1.1 2003/02/12 00:23:32 kurri Exp $ SUBDIRS = img plotapplet wwwdir = $(prefix)/www www_SCRIPTS = \ admin_main.phtml arraybatch_edit.phtml arraybatch_list.phtml \ array_main.phtml array_popup.phtml arrayslide_edit.phtml \ arrayslide_list.phtml arraytype_edit.phtml arraytype_gal.phtml \ arraytype_getmap.phtml arraytype_list.phtml arraytype_print.phtml \ arraytype_repmap.phtml assay_plotpage.phtml assay_plot.phtml \ assay_plotter.phtml assay_table.phtml assay_view.phtml \ bio_main.phtml closeme.phtml clust_image.phtml clust_index.phtml \ clust_left.phtml clust_main.phtml clust_top.phtml codesize \ data_main.phtml download.phtml downtime.phtml \ example_getconfig.inc.php experiment_edit.phtml \ experiment_list.phtml experiment_plotter.phtml extract_edit.phtml \ extract_list.phtml favicon.ico gene_explore.phtml gene_export.phtml \ help_popup.phtml hyb_edit.phtml hyb_image.phtml hyb_list.phtml \ hyb_result.phtml image_edit.phtml image_get.phtml index.phtml \ job_plotexps.phtml job_result.phtml labeled_edit.phtml \ label_edit.phtml labeled_list.phtml label_list.phtml left.phtml \ main_main.phtml news_edit.phtml news_list.phtml news_old.phtml \ nologin.phtml plate_arrange.phtml plate_edit.phtml plate_list.phtml \ platetype_edit.phtml platetype_list.phtml plate_upload.phtml \ probe_search.phtml program_edit.phtml program_export.phtml \ program_list.phtml protocol_edit.phtml protocol_getfile.phtml \ protocol_list.phtml raw_edit.phtml raw_file.phtml raw_list.phtml \ raw_makeimages.phtml raw_plotter.phtml raw_spot.phtml \ raw_table.phtml reporterlist_edit.phtml reporter_list.phtml \ reporter_main.phtml reporter_update.phtml sample_annotate.phtml \ sampleannot_edit.phtml sampleannot_list.phtml sample_edit.phtml \ sample_list.phtml sampletissue_tree.phtml settings.phtml \ showtext.phtml spotinfo.phtml test.phtml trans_create.phtml \ upload_list.phtml user_edit.phtml usergroup_edit.phtml \ usergroup_list.phtml user_list.phtml ware_edit.phtml ware_list.phtml \ wizzzard_edit.phtml wizzzard_list.phtml |
From: <ku...@us...> - 2003-02-11 23:36:13
|
Update of /cvsroot/basedb/basedb/src/lib In directory sc8-pr-cvs1:/tmp/cvs-serv5843/lib Modified Files: Makefile.am Log Message: Fixed single # comments to proper automake double ## comments. Index: Makefile.am =================================================================== RCS file: /cvsroot/basedb/basedb/src/lib/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 6 Feb 2003 00:43:35 -0000 1.1 --- Makefile.am 11 Feb 2003 23:36:09 -0000 1.2 *************** *** 1,3 **** ! # $Id$ noinst_LIBRARIES = libbase.a --- 1,5 ---- ! ## Process this file with automake to produce Makefile.in ! ## ! ## $Id$ noinst_LIBRARIES = libbase.a |
From: <ku...@us...> - 2003-02-11 23:36:13
|
Update of /cvsroot/basedb/basedb/src/sectionCounter In directory sc8-pr-cvs1:/tmp/cvs-serv5843/sectionCounter Modified Files: Makefile.am Log Message: Fixed single # comments to proper automake double ## comments. Index: Makefile.am =================================================================== RCS file: /cvsroot/basedb/basedb/src/sectionCounter/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 6 Feb 2003 00:43:36 -0000 1.1 --- Makefile.am 11 Feb 2003 23:36:10 -0000 1.2 *************** *** 1,3 **** ! # $Id$ bin_PROGRAMS = sectionCounter --- 1,5 ---- ! ## Process this file with automake to produce Makefile.in ! ## ! ## $Id$ bin_PROGRAMS = sectionCounter |
From: <ku...@us...> - 2003-02-11 23:36:12
|
Update of /cvsroot/basedb/basedb/src/jobRunner In directory sc8-pr-cvs1:/tmp/cvs-serv5843/jobRunner Modified Files: Makefile.am Log Message: Fixed single # comments to proper automake double ## comments. Index: Makefile.am =================================================================== RCS file: /cvsroot/basedb/basedb/src/jobRunner/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 6 Feb 2003 00:43:35 -0000 1.1 --- Makefile.am 11 Feb 2003 23:36:09 -0000 1.2 *************** *** 1,3 **** ! # $Id$ bin_PROGRAMS = jobRunner --- 1,5 ---- ! ## Process this file with automake to produce Makefile.in ! ## ! ## $Id$ bin_PROGRAMS = jobRunner |
From: <ku...@us...> - 2003-02-11 23:36:12
|
Update of /cvsroot/basedb/basedb/src/assayImporter In directory sc8-pr-cvs1:/tmp/cvs-serv5843/assayImporter Modified Files: Makefile.am Log Message: Fixed single # comments to proper automake double ## comments. Index: Makefile.am =================================================================== RCS file: /cvsroot/basedb/basedb/src/assayImporter/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 6 Feb 2003 00:43:35 -0000 1.1 --- Makefile.am 11 Feb 2003 23:36:09 -0000 1.2 *************** *** 1,3 **** ! # $Id$ bin_PROGRAMS = assayImporter --- 1,5 ---- ! ## Process this file with automake to produce Makefile.in ! ## ! ## $Id$ bin_PROGRAMS = assayImporter |
From: <ku...@us...> - 2003-02-11 23:36:12
|
Update of /cvsroot/basedb/basedb/src In directory sc8-pr-cvs1:/tmp/cvs-serv5843 Modified Files: Makefile.am Log Message: Fixed single # comments to proper automake double ## comments. Index: Makefile.am =================================================================== RCS file: /cvsroot/basedb/basedb/src/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 6 Feb 2003 00:43:35 -0000 1.1 --- Makefile.am 11 Feb 2003 23:36:08 -0000 1.2 *************** *** 1,3 **** ! # $Id$ SUBDIRS = lib assayImporter jobRunner sectionCounter --- 1,5 ---- ! ## Process this file with automake to produce Makefile.in ! ## ! ## $Id$ SUBDIRS = lib assayImporter jobRunner sectionCounter |
From: <ku...@us...> - 2003-02-11 23:24:57
|
Update of /cvsroot/basedb/basedb/plugins/src/merge_bioassays In directory sc8-pr-cvs1:/tmp/cvs-serv325/src/merge_bioassays Modified Files: Makefile.am Log Message: Changed single # comments to more correct double ## comments (automake thing. Changed install directory to $(prefix)/plugins_bin. Index: Makefile.am =================================================================== RCS file: /cvsroot/basedb/basedb/plugins/src/merge_bioassays/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 6 Feb 2003 00:43:34 -0000 1.1 --- Makefile.am 11 Feb 2003 23:24:23 -0000 1.2 *************** *** 1,5 **** ! # $Id$ ! bin_PROGRAMS = merge_bioassays merge_bioassays_SOURCES = merge_bioassays.cc --- 1,9 ---- ! ## Process this file with automake to produce Makefile.in ! ## ! ## $Id$ ! plugindir = $(prefix)/plugins_bin ! ! plugin_PROGRAMS = merge_bioassays merge_bioassays_SOURCES = merge_bioassays.cc |
From: <ku...@us...> - 2003-02-11 23:24:56
|
Update of /cvsroot/basedb/basedb/plugins/src/mds In directory sc8-pr-cvs1:/tmp/cvs-serv325/src/mds Modified Files: Makefile.am Log Message: Changed single # comments to more correct double ## comments (automake thing. Changed install directory to $(prefix)/plugins_bin. Index: Makefile.am =================================================================== RCS file: /cvsroot/basedb/basedb/plugins/src/mds/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.am 6 Feb 2003 00:43:34 -0000 1.2 --- Makefile.am 11 Feb 2003 23:24:23 -0000 1.3 *************** *** 1,5 **** ! # $Id$ ! bin_PROGRAMS = mds mds_SOURCES = mds.cc mds_algo.cc MDSWrapper.cc fastsqrt.cc --- 1,9 ---- ! ## Process this file with automake to produce Makefile.in ! ## ! ## $Id$ ! plugindir = $(prefix)/plugins_bin ! ! plugin_PROGRAMS = mds mds_SOURCES = mds.cc mds_algo.cc MDSWrapper.cc fastsqrt.cc |
From: <ku...@us...> - 2003-02-11 23:24:56
|
Update of /cvsroot/basedb/basedb/plugins/src/clustering/Cgraph/source In directory sc8-pr-cvs1:/tmp/cvs-serv325/src/clustering/Cgraph/source Modified Files: Makefile.am Log Message: Changed single # comments to more correct double ## comments (automake thing. Changed install directory to $(prefix)/plugins_bin. Index: Makefile.am =================================================================== RCS file: /cvsroot/basedb/basedb/plugins/src/clustering/Cgraph/source/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.am 6 Feb 2003 00:43:34 -0000 1.2 --- Makefile.am 11 Feb 2003 23:24:23 -0000 1.3 *************** *** 1,5 **** ! # $Id$ ! lib_LIBRARIES = libcgraph.a libcgraph_a_SOURCES = \ --- 1,7 ---- ! ## Process this file with automake to produce Makefile.in ! ## ! ## $Id$ ! noinst_LIBRARIES = libcgraph.a libcgraph_a_SOURCES = \ |
From: <ku...@us...> - 2003-02-11 23:24:55
|
Update of /cvsroot/basedb/basedb/plugins/src/clustering In directory sc8-pr-cvs1:/tmp/cvs-serv325/src/clustering Modified Files: Makefile.am Log Message: Changed single # comments to more correct double ## comments (automake thing. Changed install directory to $(prefix)/plugins_bin. Index: Makefile.am =================================================================== RCS file: /cvsroot/basedb/basedb/plugins/src/clustering/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.am 6 Feb 2003 00:43:34 -0000 1.2 --- Makefile.am 11 Feb 2003 23:24:22 -0000 1.3 *************** *** 1,9 **** ! # $Id$ SUBDIRS = Cgraph ! bin_PROGRAMS = basehclust drawassaytree drawgenetree drawmatrix findsubtree ! bin_SCRIPTS = clusteringscript basehclust_SOURCES = \ --- 1,13 ---- ! ## Process this file with automake to produce Makefile.in ! ## ! ## $Id$ SUBDIRS = Cgraph ! plugindir = $(prefix)/plugins_bin ! plugin_PROGRAMS = basehclust drawassaytree drawgenetree drawmatrix findsubtree ! ! plugin_SCRIPTS = clusteringscript basehclust_SOURCES = \ |
From: <ku...@us...> - 2003-02-11 23:24:55
|
Update of /cvsroot/basedb/basedb/plugins/src In directory sc8-pr-cvs1:/tmp/cvs-serv325/src Modified Files: Makefile.am Log Message: Changed single # comments to more correct double ## comments (automake thing. Changed install directory to $(prefix)/plugins_bin. Index: Makefile.am =================================================================== RCS file: /cvsroot/basedb/basedb/plugins/src/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 6 Feb 2003 00:43:33 -0000 1.1 --- Makefile.am 11 Feb 2003 23:24:22 -0000 1.2 *************** *** 1,3 **** ! # $Id$ SUBDIRS = clustering merge_bioassays mds normalizers pca --- 1,5 ---- ! ## Process this file with automake to produce Makefile.in ! ## ! ## $Id$ SUBDIRS = clustering merge_bioassays mds normalizers pca |
From: <ku...@us...> - 2003-02-11 23:24:55
|
Update of /cvsroot/basedb/basedb/plugins In directory sc8-pr-cvs1:/tmp/cvs-serv325 Modified Files: Makefile.am Log Message: Changed single # comments to more correct double ## comments (automake thing. Changed install directory to $(prefix)/plugins_bin. Index: Makefile.am =================================================================== RCS file: /cvsroot/basedb/basedb/plugins/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 6 Feb 2003 00:43:33 -0000 1.1 --- Makefile.am 11 Feb 2003 23:24:21 -0000 1.2 *************** *** 1,3 **** ! # $Id$ SUBDIRS = src --- 1,5 ---- ! ## Process this file with automake to produce Makefile.in ! ## ! ## $Id$ SUBDIRS = src |