PNNL-CompBio / CONCERTO

Continuous integration and validation for genome-scale metabolic model consortia
Apache License 2.0
3 stars 3 forks source link

Swap colors between Azoto and Cyano #88

Closed djinnome closed 1 year ago

djinnome commented 1 year ago

I think the issue is here:

## Add organisms into their respective carrier groups
# Azotobacter is the carbon carrier
carrier_m['C']['names'].append('Av_Av')

# Synecococcus is the nitrogen carrier
carrier_m['N']['names'].append('Se_Se')

# Rhodosporidium is the jet fuel creator
carrier_m['jet_fuel']['names'].append('Rt_Rt')

should be:

## Add organisms into their respective carrier groups
# Synechococcus is the carbon fixer
carrier_m['C']['names'].append('Se_Se')

# Azotobacter is the nitrogen fixer
carrier_m['N']['names'].append('Av_Av')

# Rhodosporidium is the jet fuel creator
carrier_m['jet_fuel']['names'].append('Rt_Rt')
ShantMahserejian commented 1 year ago

Done

djinnome commented 1 year ago

This issue will automatically close when PR #90 has been accepted