Skip to content

Commit 72083f7

Browse files
committed
fix file names
1 parent 436d5c6 commit 72083f7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

SINGER/SINGER/Sampler.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -780,11 +780,11 @@ void Sampler::write_cut(tuple<double, Branch, double> cut_point) {
780780
void Sampler::load_resume_arg() {
781781
arg = ARG(Ne, sequence_length);
782782
string node_file, branch_file, recomb_file, mut_file, coord_file;
783-
node_file = output_prefix + "_fast_nodes_" + to_string(sample_index) + ".txt";
784-
branch_file= output_prefix + "_fast_branches_" + to_string(sample_index) + ".txt";
785-
recomb_file = output_prefix + "_fast_recombs_" + to_string(sample_index) + ".txt";
786-
mut_file = output_prefix + "_fast_muts_" + to_string(sample_index) + ".txt";
787-
coord_file = output_prefix + "_fast_coordinates.txt";
783+
node_file = output_prefix + "_nodes_" + to_string(sample_index) + ".txt";
784+
branch_file= output_prefix + "_branches_" + to_string(sample_index) + ".txt";
785+
recomb_file = output_prefix + "_recombs_" + to_string(sample_index) + ".txt";
786+
mut_file = output_prefix + "_muts_" + to_string(sample_index) + ".txt";
787+
coord_file = output_prefix + "_coordinates.txt";
788788
arg.read(node_file, branch_file, recomb_file, mut_file);
789789
arg.read_coordinates(coord_file);
790790
if (mut_rate > 0 and recomb_rate > 0) {

0 commit comments

Comments
 (0)