Skip to content

Commit

Permalink
Update ancestral allele pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
dglemos committed May 19, 2023
1 parent 367b0f8 commit e7e5556
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ sub default_options {
default_lsf_options => '-q production -R"select[mem>2000] rusage[mem=2000]" -M2000',
medmem_lsf_options => '-q production -R"select[mem>5000] rusage[mem=5000]" -M5000',

default_slurm_options => '--partition=standard --time=12:00:00 --mem=2G',
medmem_slurm_options => '--partition=standard --time=12:00:00 --mem=5G',

hive_db_host => 'mysql-ens-var-prod-1',
hive_db_port => 4449,
hive_db_user => 'ensadmin',
Expand All @@ -101,8 +104,10 @@ sub default_options {
sub resource_classes {
my ($self) = @_;
return {
'default' => { 'LSF' => $self->o('default_lsf_options') },
'medmem' => { 'LSF' => $self->o('medmem_lsf_options') },
'default' => { 'LSF' => $self->o('default_lsf_options'),
'SLURM' => $self->o('default_slurm_options') },
'medmem' => { 'LSF' => $self->o('medmem_lsf_options'),
'SLURM' => $self->o('medmem_slurm_options') },
};
}

Expand Down Expand Up @@ -157,4 +162,3 @@ sub pipeline_analyses {
}

1;

0 comments on commit e7e5556

Please sign in to comment.