Skip to content

Commit

Permalink
Move glycosylation track to beside mods track
Browse files Browse the repository at this point in the history
  • Loading branch information
kimrutherford committed Aug 13, 2024
1 parent 5f942b3 commit ef93ab8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pombase/bio/protein_view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -747,14 +747,15 @@ pub fn make_protein_view_data_map(gene_details_maps: &UniquenameGeneMap,
let protein_view_data = ProteinViewData {
sequence: protein.sequence.clone(),
tracks: vec![mutant_summary_track, mutants_track, deletions_track,
modification_track, pfam_track,
modification_track, glycosylation_sites_track,
pfam_track,
tm_domains_track, disordered_regions_track,
low_complexity_regions_track, coiled_coil_coords,
signal_peptide_track, transit_peptide_track,
binding_sites_track, active_sites_track,
beta_strands_track, helix_track, turns_track,
propeptides_track, chains_track,
glycosylation_sites_track, disulfide_bonds_track],
disulfide_bonds_track],
};

gene_map.insert(gene_details.uniquename.clone(), protein_view_data);
Expand Down

0 comments on commit ef93ab8

Please sign in to comment.