Skip to content

Commit

Permalink
Make germline mutation marker thinner and fix bugs when displaying re…
Browse files Browse the repository at this point in the history
…currence germline mutations
  • Loading branch information
rnugraha committed Feb 6, 2018
1 parent f6b7424 commit a5c2ca6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/shared/components/oncoprint/geneticrules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,9 @@ let non_mutation_rule_params = {
'type': 'rectangle',
'fill': MUT_COLOR_GERMLINE,
'x': '0%',
'y': '45.5%',
'y': '46%',
'width': '100%',
'height': '9%',
'height': '8%',
'z': 7
}],
legend_label: 'Germline Mutation'
Expand Down Expand Up @@ -302,7 +302,7 @@ export const genetic_rule_set_different_colors_recurrence:RuleSetParams = {
}],
legend_label: 'Promoter Mutation'
},
'trunc_rec, trunc_rec_germ': {
'trunc_rec,trunc_rec_germ': {
shapes: [{
'type': 'rectangle',
'fill': MUT_COLOR_TRUNC,
Expand All @@ -314,7 +314,7 @@ export const genetic_rule_set_different_colors_recurrence:RuleSetParams = {
}],
legend_label: 'Truncating Mutation (putative driver)',
},
'trunc, trunc_germ': {
'trunc,trunc_germ': {
shapes: [{
'type': 'rectangle',
'fill': MUT_COLOR_TRUNC_PASSENGER,
Expand All @@ -326,7 +326,7 @@ export const genetic_rule_set_different_colors_recurrence:RuleSetParams = {
}],
legend_label: 'Truncating Mutation (putative passenger)',
},
'inframe_rec, inframe_rec_germ': {
'inframe_rec,inframe_rec_germ': {
shapes: [{
'type': 'rectangle',
'fill': MUT_COLOR_INFRAME,
Expand All @@ -338,7 +338,7 @@ export const genetic_rule_set_different_colors_recurrence:RuleSetParams = {
}],
legend_label: 'Inframe Mutation (putative driver)',
},
'inframe, inframe_germ': {
'inframe,inframe_germ': {
shapes: [{
'type': 'rectangle',
'fill': MUT_COLOR_INFRAME_PASSENGER,
Expand All @@ -350,7 +350,7 @@ export const genetic_rule_set_different_colors_recurrence:RuleSetParams = {
}],
legend_label: 'Inframe Mutation (putative passenger)',
},
'missense_rec, missense_rec_germ': {
'missense_rec,missense_rec_germ': {
shapes: [{
'type': 'rectangle',
'fill': MUT_COLOR_MISSENSE,
Expand All @@ -362,7 +362,7 @@ export const genetic_rule_set_different_colors_recurrence:RuleSetParams = {
}],
legend_label: 'Missense Mutation (putative driver)',
},
'missense, missense_germ': {
'missense,missense_germ': {
shapes: [{
'type': 'rectangle',
'fill': MUT_COLOR_MISSENSE_PASSENGER,
Expand Down

0 comments on commit a5c2ca6

Please sign in to comment.