Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
reneshbedre committed Aug 16, 2021
1 parent 8562082 commit 9480fd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bioinfokit/analys.py
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ def merge_featureCount(pattern='*.txt', gene_column_name='Geneid'):
count_files = glob.glob(pattern)
iter = 0
for f in count_files:
df = pd.read_csv(f, sep='\t')
df = pd.read_csv(f, sep='\t', comment='#')
if iter == 0:
df_count_mat = df.iloc[:, [0, 6]]
iter += 1
Expand Down

0 comments on commit 9480fd9

Please sign in to comment.