Skip to content

Commit

Permalink
add feature name column to shared cols
Browse files Browse the repository at this point in the history
  • Loading branch information
acoffman committed Oct 15, 2024
1 parent 9c5791c commit fc1ddb5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions server/app/tsv_formatters/variant_tsv_formatter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ def self.headers
'variant_civic_url',
'feature_type',
'feature_id',
'feature_name',
'feature_civic_url',
'variant',
'variant_aliases',
Expand Down Expand Up @@ -128,6 +129,7 @@ def self.row_from_object(variant)
LinkAdaptors::Variant.new(variant).permalink_path(include_domain: true),
variant.feature.feature_instance_type.demodulize,
variant.feature.id,
variant.feature.name,
LinkAdaptors::Feature.new(variant.feature).permalink_path(include_domain: true),
variant.name,
variant.variant_aliases.map(&:name).join(','),
Expand Down

0 comments on commit fc1ddb5

Please sign in to comment.