Skip to content

Commit

Permalink
Update predict_AAE.py
Browse files Browse the repository at this point in the history
Now uses sample and entrez columns as row indexes, rather than a single ID column
  • Loading branch information
joelnulsen authored Jan 15, 2020
1 parent 55d8af9 commit a33d4e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/predict_AAE.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@

# Load data
print("Reading input from", args.input_file)
features_df = pd.read_csv(args.input_file, sep = "\t", index_col = "id")
features_df = pd.read_csv(args.input_file, sep = "\t", index_col = ["sample", "entrez"])


# Scale data
Expand Down

0 comments on commit a33d4e3

Please sign in to comment.