diff --git a/README.md b/README.md index 1fce36f..db45f54 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ tar xvf group_data.tar Add the hash_list file to Git: ``` -git add data/group-*/hash_list.txt +git add group-*/hash_list.txt git commit -m "Add hash list file" ``` diff --git a/scripts/find_outliers.py b/scripts/find_outliers.py index baec116..b92fa2a 100644 --- a/scripts/find_outliers.py +++ b/scripts/find_outliers.py @@ -25,7 +25,7 @@ def print_outliers(data_directory): outlier_strs = [] for out_ind in outliers: outlier_strs.append(str(out_ind)) - print(', '.join([fname] + outlier_strs)) + print(', '.join([str(fname)] + outlier_strs)) def get_parser():