Skip to content

Commit 3c2c38e

Browse files
committed
Remove unneccessary calculation in join_features
1 parent ba6f5f4 commit 3c2c38e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/metafx-scripts/join_feature_vectors.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def load_cat(cat, wd):
3030
cat_samples = pd.read_csv(cat_file, sep="\t", header=None, index_col=None)
3131
cat_samples = cat_samples.fillna('')
3232
categories = cat_samples.iloc[:, 0]
33-
all_files = cat_samples.iloc[0, 1].split() + cat_samples.iloc[0, 2].split()
33+
# all_files = cat_samples.iloc[0, 1].split() + cat_samples.iloc[0, 2].split()
3434

3535
subtables = []
3636
for cat in categories:

0 commit comments

Comments
 (0)