From: <tr...@us...> - 2003-02-11 10:45:59
|
Update of /cvsroot/basedb/basedb/src/assayImporter In directory sc8-pr-cvs1:/tmp/cvs-serv24122 Modified Files: assayImporter.cc Log Message: Now with extra float columns Index: assayImporter.cc =================================================================== RCS file: /cvsroot/basedb/basedb/src/assayImporter/assayImporter.cc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** assayImporter.cc 6 Feb 2003 00:43:35 -0000 1.1 --- assayImporter.cc 11 Feb 2003 10:45:52 -0000 1.2 *************** *** 2,6 **** // // BioArray Software Environment (BASE) - homepage http://base.thep.lu.se/ ! // Copyright (C) 2002 Lao Saal, Carl Troein, Johan Vallon-Christersson // // This file is part of BASE. --- 2,6 ---- // // BioArray Software Environment (BASE) - homepage http://base.thep.lu.se/ ! // Copyright (C) 2002,2003 Lao Saal, Carl Troein, Johan Vallon-Christersson // [...181 lines suppressed...] ! cerr << "Unable to open data input file '" << argv[1] << "'\n"; ! return 1; ! } ! ofstream extraout(argv[3]); ! if(!extraout) ! { ! cerr << "Unable to open extra float output file '" << argv[4] << "'\n"; return 1; } *************** *** 180,183 **** return 1; } ! return assayImport(datain, cin, channels) ? 0 : 1; } --- 236,239 ---- return 1; } ! return assayImport(datain, cin, channels, extraout) ? 0 : 1; } |