Skip to content

Commit 40cb581

Browse files
authored
remove # in front of feature_id for combined_table
1 parent dec40f5 commit 40cb581

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def combine_table(input_data, output, get_file_name, output_file_name, column_na
6060
for sample in input_data.samples[1:]:
6161
combined_table = pd.merge(combined_table,
6262
transform_counts(get_file_name(sample), sample.prefix, column_name, full),
63-
on='#feature_id', how='outer')
63+
on='feature_id', how='outer')
6464

6565
combined_table.to_csv(os.path.join(output, output_file_name), sep='\t', index=False)
6666

0 commit comments

Comments
 (0)