We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In /exporter/diagram/{identifier}.{ext}, the Default value of resource is TOTAL, but in resultome2py.content.export_diagram, Total. This prevents markers from being colored in the following code.
TOTAL
Total
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}" )
0-Total.png
1-TOTAL.png
Therefore, Total should be replaced by TOTAL.
The text was updated successfully, but these errors were encountered:
🐛 replace 'Total' to 'TOTAL' reactome#33
6c0c64e
No branches or pull requests
In /exporter/diagram/{identifier}.{ext}, the Default value of resource is
TOTAL
, but in resultome2py.content.export_diagram,Total
.This prevents markers from being colored in the following code.
0-Total.png
are not colored.1-TOTAL.png
are colored.Therefore,
Total
should be replaced byTOTAL
.The text was updated successfully, but these errors were encountered: