@@ -61,33 +61,33 @@ public void simulateAllTasks(ExternalDocInfo externalDocInfo, SedML sedml, File
61
61
SolverDescription sd = std .getSolverDescription ();
62
62
String kisao = sd .getKisao ();
63
63
if (SolverDescription .CVODE .getKisao ().contentEquals (kisao )) {
64
- ODESolverResultSet odeSolverResultSet = CVODEHelper .solve (outputDir , sims [i ].getDescription (), bioModel );
64
+ ODESolverResultSet odeSolverResultSet = CVODEHelper .solve (outputDir , sims [i ].getDescription (). replaceAll ( "[: \\ \\ /*?|<>]" , "_" ) , bioModel );
65
65
System .out .println ("Finished: " + docName + ": - task '" + sims [i ].getDescription () + "'." );
66
66
} else if (SolverDescription .StochGibson .getKisao ().contentEquals (kisao )) {
67
- ODESolverResultSet odeSolverResultSet = StockGibsonHelper .solve (outputDir , sims [i ].getDescription (),
67
+ ODESolverResultSet odeSolverResultSet = StockGibsonHelper .solve (outputDir , sims [i ].getDescription (). replaceAll ( "[: \\ \\ /*?|<>]" , "_" ) ,
68
68
bioModel );
69
69
System .out .println ("Finished: " + docName + ": - task '" + sims [i ].getDescription () + "'." );
70
70
} else if (SolverDescription .IDA .getKisao ().contentEquals (kisao )) {
71
- ODESolverResultSet odeSolverResultSet = IDAHelper .solve (outputDir , sims [i ].getDescription (), bioModel );
71
+ ODESolverResultSet odeSolverResultSet = IDAHelper .solve (outputDir , sims [i ].getDescription (). replaceAll ( "[: \\ \\ /*?|<>]" , "_" ) , bioModel );
72
72
System .out .println ("Finished: " + docName + ": - task '" + sims [i ].getDescription () + "'." );
73
73
} else if (SolverDescription .RungeKuttaFehlberg .getKisao ().contentEquals (kisao )) {
74
- ODESolverResultSet odeSolverResultSet = RungeKuttaFelhbergHelper .solve (outputDir , sims [i ].getDescription (),
74
+ ODESolverResultSet odeSolverResultSet = RungeKuttaFelhbergHelper .solve (outputDir , sims [i ].getDescription (). replaceAll ( "[: \\ \\ /*?|<>]" , "_" ) ,
75
75
bioModel );
76
76
System .out .println ("Finished: " + docName + ": - task '" + sims [i ].getDescription () + "'." );
77
77
} else if (SolverDescription .AdamsMoulton .getKisao ().contentEquals (kisao )) {
78
- ODESolverResultSet odeSolverResultSet = AdamsMoultonHelper .solve (outputDir , sims [i ].getDescription (),
78
+ ODESolverResultSet odeSolverResultSet = AdamsMoultonHelper .solve (outputDir , sims [i ].getDescription (). replaceAll ( "[: \\ \\ /*?|<>]" , "_" ) ,
79
79
bioModel );
80
80
System .out .println ("Finished: " + docName + ": - task '" + sims [i ].getDescription () + "'." );
81
81
} else if (SolverDescription .ForwardEuler .getKisao ().contentEquals (kisao )) {
82
- ODESolverResultSet odeSolverResultSet = ForwardEulerHelper .solve (outputDir , sims [i ].getDescription (),
82
+ ODESolverResultSet odeSolverResultSet = ForwardEulerHelper .solve (outputDir , sims [i ].getDescription (). replaceAll ( "[: \\ \\ /*?|<>]" , "_" ) ,
83
83
bioModel );
84
84
System .out .println ("Finished: " + docName + ": - task '" + sims [i ].getDescription () + "'." );
85
85
} else if (SolverDescription .RungeKutta2 .getKisao ().contentEquals (kisao )) {
86
- ODESolverResultSet odeSolverResultSet = RungeKutta2Helper .solve (outputDir , sims [i ].getDescription (),
86
+ ODESolverResultSet odeSolverResultSet = RungeKutta2Helper .solve (outputDir , sims [i ].getDescription (). replaceAll ( "[: \\ \\ /*?|<>]" , "_" ) ,
87
87
bioModel );
88
88
System .out .println ("Finished: " + docName + ": - task '" + sims [i ].getDescription () + "'." );
89
89
} else if (SolverDescription .RungeKutta4 .getKisao ().contentEquals (kisao )) {
90
- ODESolverResultSet odeSolverResultSet = RungeKutta4Helper .solve (outputDir , sims [i ].getDescription (),
90
+ ODESolverResultSet odeSolverResultSet = RungeKutta4Helper .solve (outputDir , sims [i ].getDescription (). replaceAll ( "[: \\ \\ /*?|<>]" , "_" ) ,
91
91
bioModel );
92
92
System .out .println ("Finished: " + docName + ": - task '" + sims [i ].getDescription () + "'." );
93
93
} else {
0 commit comments