Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use warnings;
use base ('Bio::EnsEMBL::Production::Pipeline::PipeConfig::Base_conf');

use Bio::EnsEMBL::Hive::PipeConfig::HiveGeneric_conf;
use Bio::EnsEMBL::Hive::Version 2.5;
use Bio::EnsEMBL::Hive::Version;

sub default_options {
my ($self) = @_;
Expand Down Expand Up @@ -147,4 +147,4 @@ sub resource_classes {
}
}

1;
1;
2 changes: 1 addition & 1 deletion nextflow/nf-py-scripts/genesearch_solr.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def fetch_gene_info(core_db_connection, specie_production_name, genome_uuid):
) \
.select_from(Gene) \
.join(Transcript, Transcript.gene_id == Gene.gene_id) \
.join(Xref, Gene.display_xref_id == Xref.xref_id) \
.outerjoin(Xref, Gene.display_xref_id == Xref.xref_id) \
.join(SeqRegion, Gene.seq_region_id == SeqRegion.seq_region_id) \
.join(CoordSystem, SeqRegion.coord_system_id == CoordSystem.coord_system_id) \
.join(SeqRegionAttrib, SeqRegion.seq_region_id == SeqRegionAttrib.seq_region_id) \
Expand Down