Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions PyRate.py
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ def comb_mcmc_files(infile, files,burnin,tag,resample,col_tag,file_type=""):
head_temp= np.array(head_temp)
head_t= ["%s\t" % (i) for i in head_temp[sp_ind]]
tbl_header="it\t"
for i in head_t: tbl_header+=i
tbl_header+=''.join([ht for ht in head_t])
tbl_header+="\n"
print("found", len(head_t), "columns")
comb = t_file[:,sp_ind]
Expand Down Expand Up @@ -1062,7 +1062,7 @@ def comb_log_files(path_to_files,burnin=0,tag="",resample=0,col_tag=[]):
head_temp= np.array(head_temp)
head_t= ["%s\t" % (i) for i in head_temp[sp_ind]]
tbl_header="it\t"
for i in head_t: tbl_header+=i
tbl_header += ''.join([ht for ht in head_t])
tbl_header+="\n"
print("found", len(head_t), "columns")
comb = t_file[:,sp_ind]
Expand Down