From 4f2f172eeab088e79caeb4a9f144472c708bb70a Mon Sep 17 00:00:00 2001
From: Christian Beckmann <c.beckmann@donders.ru.nl>
Date: Sat, 24 Nov 2007 13:37:06 +0000
Subject: [PATCH] *** empty log message ***

---
 Makefile     |  2 +-
 fsl_glm.cc   |  2 +-
 meldata.cc   | 29 +++++++++++++++++++----------
 melodic.cc   |  4 +++-
 meloptions.h |  9 +++++++--
 melreport.cc | 12 +++++++-----
 6 files changed, 38 insertions(+), 20 deletions(-)

diff --git a/Makefile b/Makefile
index d12cd48..ecf8f16 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ USRLDFLAGS = -L${LIB_NEWMAT} -L${LIB_PROB} -L${LIB_GD} -L${LIB_GDC} -L${LIB_PNG}
 
 LIBS = -lutils -lnewimage -lmiscplot -lmiscpic -lmiscmaths -lfslio -lniftiio -lznz -lnewmat -lprob -lm  -lgdc -lgd -lpng -lz
 
-TEST_OBJS = melhlprfns.o test.o  
+TEST_OBJS = test.o test2.o
 
 GGMIX_OBJS = ggmix.o
 
diff --git a/fsl_glm.cc b/fsl_glm.cc
index 0398b29..e1f9873 100644
--- a/fsl_glm.cc
+++ b/fsl_glm.cc
@@ -44,7 +44,7 @@ using namespace std;
 		false, requires_argument);
   Option<string> fncontrasts(string("-c,--contrasts"), string(""),
 		string("matrix of t-statistics contrasts"),
-		false, requires_argument, false);
+		true, requires_argument);
   Option<string> fnftest(string("-f,--ftests"), string(""),
 		string("matrix of F-tests on contrasts"),
 		false, requires_argument);
diff --git a/meldata.cc b/meldata.cc
index 54b0dd5..a1115ec 100644
--- a/meldata.cc
+++ b/meldata.cc
@@ -87,9 +87,11 @@ namespace Melodic{
     if(opts.varnorm.value()){
       message("  Normalising by voxel-wise variance ..."); 
 			if(stdDev.Storage()==0)
-      	stdDev = varnorm(tmpData,std::min(30,tmpData.Nrows()-1),2.3)/numfiles;
+      	stdDev = varnorm(tmpData,std::min(30,tmpData.Nrows()-1),
+					opts.vn_level.value())/numfiles;
 			else 	
-				stdDev += varnorm(tmpData,std::min(30,tmpData.Nrows()-1),2.3)/numfiles;
+				stdDev += varnorm(tmpData,std::min(30,tmpData.Nrows()-1),
+					opts.vn_level.value())/numfiles;
       stdDevi = pow(stdDev,-1); 
       message(" done" << endl);
     }
@@ -490,7 +492,9 @@ namespace Melodic{
 
       save4D(PCAmaps,opts.outputfname.value() + "_pca");
     }
-  } //void save()
+ 
+		message("...done" << endl);
+ } //void save()
 
   int MelodicData::remove_components()
   {  
@@ -748,14 +752,19 @@ namespace Melodic{
 
 				// Setup external call to BET:
 
-				char callBETstr[1000];
-				ostrstream betosc(callBETstr,1000);
-				betosc  << BET_path << " " << Mean_fname << " " 
-	     		<< BET_outputfname << " " << BET_optarg << " > /dev/null " << '\0';
-	
-        message("  Calling BET: " << callBETstr << endl);
-				system(callBETstr);
+		//		char callBETstr[1000];
+	//			ostrstream betosc(callBETstr,1000);
+//				betosc  << BET_path << " " << Mean_fname << " " 
+//	     		<< BET_outputfname << " " << BET_optarg << " > /dev/null " << '\0';
 	
+//        message("  Calling BET: " << callBETstr << endl);
+//				system(callBETstr);
+
+				string tmpstr = BET_path + string(" ") + 
+				                Mean_fname + string(" ") + BET_outputfname + string(" ") + 
+				                BET_optarg + string(" > /dev/null ");
+				system(tmpstr.c_str());
+								
 				// read back the Mask file   
 				read_volume(theMask,Mask_fname);
 				
diff --git a/melodic.cc b/melodic.cc
index 0d04f18..fef92f1 100644
--- a/melodic.cc
+++ b/melodic.cc
@@ -135,7 +135,8 @@ int main(int argc, char *argv[]){
 				melodat.save();
 				Matrix pmaps;//(melodat.get_IC());
 				Matrix mmres;
-
+			
+				message("Creating report index page ...");
 				if( bool(opts.genreport.value()) ){
 		  		report.analysistxt();
 					if(melodat.get_numfiles()>1)
@@ -143,6 +144,7 @@ int main(int argc, char *argv[]){
 		  		report.PPCA_rep();
 				}
 					
+				message("done"<< endl <<endl);
 				if(opts.perf_mm.value())
 	  			mmres = mmall(logger,opts,melodat,report,pmaps);
 				else{
diff --git a/meloptions.h b/meloptions.h
index 534a1cf..ca1eec8 100644
--- a/meloptions.h
+++ b/meloptions.h
@@ -55,6 +55,7 @@ class MelodicOptions {
   	Option<string> pca_est;
   	Option<bool>   joined_whiten;
   	Option<bool>   joined_vn;
+		Option<float>	 vn_level;
   	Option<int>    numICs;
   	Option<string> approach;
   	Option<string> nonlinearity;
@@ -186,8 +187,11 @@ class MelodicOptions {
 	   string("switch on separate whitening"), 
 	   false, no_argument),
 	 joined_vn(string("--sep_vn"), true,
-		   string("switch off joined variance nomalisation"), 
-		   false, no_argument, false),
+		 string("switch off joined variance nomalisation"), 
+		 false, no_argument, false),
+	 vn_level(string("--vn_level"), float(2.3),
+		 string("variance nomalisation threshold level (Z> value is ignored)"), 
+		 false, requires_argument, false),
    numICs(string("-n,--numICs"), -1,
 	   string("numer of IC's to extract (for deflation approach)"), 
 	   false, requires_argument),
@@ -379,6 +383,7 @@ class MelodicOptions {
 	    options.add(pca_est);
 	    options.add(joined_whiten);
 	    options.add(joined_vn);
+	    options.add(vn_level);
 	    options.add(numICs);
 	    options.add(approach);
 	    options.add(nonlinearity);
diff --git a/melreport.cc b/melreport.cc
index beeb332..b851f86 100644
--- a/melreport.cc
+++ b/melreport.cc
@@ -289,7 +289,7 @@ namespace Melodic{
 
 					newplot.boxplot((Matrix)smode.Column(1),
 			    	report.appendDir(string("b")+num2str(cnum)+".png"),
-			      string("Subject/Session mode"));
+			        string("Subject/Session mode"));
 	      	write_ascii_matrix(report.appendDir(string("s")
 		 				+num2str(cnum)+".txt"),  smode);
 	      	IChtml << "<A HREF=\"" << string("s")
@@ -789,16 +789,18 @@ namespace Melodic{
 			<< "session/subject domain (" << melodat.get_numfiles() 
 			<< " input files). Components have been sorted in decreasing order of "
 			<< " the median response per component. <br><br>";
+			
+		outMsize("Smode.at(0)", melodat.get_Smodes().at(0));
 		Matrix allmodes = melodat.get_Smodes().at(0);
 		for(int ctr = 1; ctr < (int)melodat.get_Smodes().size();++ctr)
 			allmodes |= melodat.get_Smodes().at(ctr);
-		
+	
+		outMsize("allmodes", allmodes);
 		newplot.add_xlabel("Component No.");
 		newplot.add_ylabel("");
 		newplot.set_xysize(100+30*allmodes.Ncols(),300);
 		newplot.boxplot(allmodes,report.appendDir(string("bp_Smodes.png")),
-    string("Subject/Session modes"));
-
-  	report << "<img BORDER=0 SRC=\"bp_Smodes.png\"><p>" << endl;
+  			string("Subject/Session modes"));
+  		report << "<img BORDER=0 SRC=\"bp_Smodes.png\"><p>" << endl;
 	}
 }
-- 
GitLab