Index: /issm/trunk/src/m/classes/clusters/pfe.m
===================================================================
--- /issm/trunk/src/m/classes/clusters/pfe.m	(revision 6083)
+++ /issm/trunk/src/m/classes/clusters/pfe.m	(revision 6084)
@@ -53,4 +53,5 @@
 			 disp(sprintf('    codepath: %s',cluster.codepath));
 			 disp(sprintf('    executionpath: %s',cluster.executionpath));
+			 disp(sprintf('    interactive: %i',cluster.interactive));
 		 end
 		 %}}}
@@ -130,5 +131,5 @@
 			                ' && cd ' md.runtimename ' && mv ../' md.runtimename '.tar.gz ./ && tar -zxf ' md.runtimename '.tar.gz  && qsub ' md.name '.queue '];
 			else
-				launchcommand=['cd ' cluster.executionpath '/Interactive && tar -zxf ' md.runtimename '.tar.gz'];
+				launchcommand=['cd ' cluster.executionpath '/Interactive' num2str(cluster.interactive) ' && tar -zxf ' md.runtimename '.tar.gz'];
 			end
 
@@ -149,5 +150,5 @@
 					issmscpout(cluster.name,cluster.executionpath,cluster.login,cluster.port,{[md.runtimename '.tar.gz']});
 				else
-					issmscpout(cluster.name,[cluster.executionpath '/Interactive'],cluster.login,cluster.port,{[md.runtimename '.tar.gz']});
+					issmscpout(cluster.name,[cluster.executionpath '/Interactive' num2str(cluster.interactive)],cluster.login,cluster.port,{[md.runtimename '.tar.gz']});
 				end
 				
@@ -178,5 +179,5 @@
 				directory=[cluster.executionpath '/' md.runtimename '/'];
 			else
-				directory=[cluster.executionpath '/Interactive/'];
+				directory=[cluster.executionpath '/Interactive' num2str(cluster.interactive) '/'];
 			end
 
