Skip to content

Commit e7da172

Browse files
committed
added ridx to unused_args for parse_gct
1 parent 41265ed commit e7da172

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmapPy/pandasGEXpress/parse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def parse(file_path, convert_neg_666=True, rid=None, cid=None, ridx=None, cidx=N
5656
"""
5757
if file_path.endswith(".gct"):
5858
# Ignoring arguments that won't be passed to parse_gct
59-
for unused_arg in ["rid", "cid", "cidx"]:
59+
for unused_arg in ["rid", "cid", "ridx", "cidx"]:
6060
if eval(unused_arg):
6161
msg = "parse_gct does not use the argument {}. Ignoring it...".format(unused_arg)
6262
logger.warning(msg)

0 commit comments

Comments
 (0)