Skip to content

Commit

Permalink
Remove unneccessary calculation in join_features
Browse files Browse the repository at this point in the history
  • Loading branch information
ivartb committed Nov 28, 2023
1 parent ba6f5f4 commit 3c2c38e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/metafx-scripts/join_feature_vectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def load_cat(cat, wd):
cat_samples = pd.read_csv(cat_file, sep="\t", header=None, index_col=None)
cat_samples = cat_samples.fillna('')
categories = cat_samples.iloc[:, 0]
all_files = cat_samples.iloc[0, 1].split() + cat_samples.iloc[0, 2].split()
# all_files = cat_samples.iloc[0, 1].split() + cat_samples.iloc[0, 2].split()

subtables = []
for cat in categories:
Expand Down

0 comments on commit 3c2c38e

Please sign in to comment.