Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions geneplexus/_geneplexus.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def _initial_id_convert(input_genes, file_loc, species):
convert_ids.append(agene)
else:
convert_out.append(
[agene, f"Not in Our List of {species} Entrez Genes", None],
[agene, f"Not in Our List of {species} Entrez Genes", "None"],
)
except ValueError:
converted_gene: Optional[str] = None
Expand All @@ -75,7 +75,7 @@ def _initial_id_convert(input_genes, file_loc, species):
[
agene,
converted_gene or "Could Not be mapped to Entrez",
converted_gene_name or None,
converted_gene_name or "None",
],
)

Expand Down
Loading