PNNL-CompBio / CONCERTO

Continuous integration and validation for genome-scale metabolic model consortia

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Swap colors between Azoto and Cyano

djinnome opened this issue · comments

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')

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