In [/exporter/diagram/{identifier}.{ext}](https://reactome.org/ContentService/#/exporter/diagramImage_1), the Default value of resource is `TOTAL`, but in [resultome2py.content.export_diagram](https://reactome.github.io/reactome2py/content.html#reactome2py.content.export_diagram), `Total`. This prevents markers from being colored in the following code. ```py from reactome2py import content, analysis markers = "RAS,MAP,IL10,EGF,EGFR,STAT" result = analysis.identifiers(ids=markers) token = result["summary"]["token"] stId = result["pathways"][0]["stId"] for i, resource in enumerate(["Total", "TOTAL"]): content.export_diagram( id=stId, resource=resource, token=token, file=f"{i}-{resource}" ) ``` |Markers in `0-Total.png` are not colored.|Markers in `1-TOTAL.png` are colored.| |:---:|:---:| ||| Therefore, `Total` should be replaced by `TOTAL`.