Line 180 of prot/utils.py truncates mouse ensembl ids. Current code: transcript_ids=ensembl.transcript_ids_of_gene_id(gene_id[0:15])
This will result in all of your ensembl Ids to be "not found". To overcome this you can replace with this:
transcript_ids=ensembl.transcript_ids_of_gene_id(gene_id.split('.')[0])
which will be compatible with both human and mouse IDs.
Line 180 of prot/utils.py truncates mouse ensembl ids. Current code:
transcript_ids=ensembl.transcript_ids_of_gene_id(gene_id[0:15])
This will result in all of your ensembl Ids to be "not found". To overcome this you can replace with this:transcript_ids=ensembl.transcript_ids_of_gene_id(gene_id.split('.')[0])
which will be compatible with both human and mouse IDs.