Skip to content

Commit

Permalink
File gender strikes again
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Nuhn committed Jan 22, 2016
1 parent 2e48334 commit 9816bb7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion modules/Bio/EnsEMBL/Funcgen/Hive/MergeQCAlignments.pm
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,11 @@ sub fetch_input {

#could have recreated output_dir and merged_file_name from ResultSet and run_controls
#as we did in MergeChunkResultSetFastqs, but passed for convenience
$self->sam_header($rset->cell_type->gender);
my $gender = $rset->cell_type->gender;
$file_gender = 'female'
if ($gender eq 'mixed');

$self->sam_header($file_gender);

#my $repository = $self->_repository();
#if(! -d $repository){
Expand Down

0 comments on commit 9816bb7

Please sign in to comment.