Skip to content
This repository has been archived by the owner on May 3, 2018. It is now read-only.

Commit

Permalink
Merge pull request #20 from mhalagan-nmdp/v1.0.5
Browse files Browse the repository at this point in the history
V1.0.5
  • Loading branch information
Michael Halagan committed Nov 30, 2016
2 parents 198ec32 + 33fdbf2 commit 360abe7
Show file tree
Hide file tree
Showing 17 changed files with 714 additions and 283 deletions.
3 changes: 2 additions & 1 deletion GFE_Submission/Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ WriteMakefile(
'IO::Socket::SSL' => 0,
'REST::Client' => 0,
'Math::Round' => 0,
'File::Spec' => 0
'File::Spec' => 0,
'XML::DOM' => 0
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'GFE_Submission-*' },
Expand Down
2 changes: 1 addition & 1 deletion GFE_Submission/bin/app.pl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ =head1 LICENSE
set 'logger' => 'console';
set 'session' => 'Simple';
set 'log' => 'debug';
set 'serializer' => 'JSON';

set 'show_errors' => 1;
set 'startup_info' => 1;
set 'warnings' => 1;
Expand Down
4 changes: 1 addition & 3 deletions GFE_Submission/bin/fasta2gfe
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,7 @@ use Cwd;
our($s_subject_id) = (undef);
&GetOptions('subject|i=s' => \$s_subject_id );

my $o_gfe = GFE->new();

$o_gfe->verbose(1);
$o_gfe->return_structure(0);

my %h_seqs;
my $s_header;
Expand Down Expand Up @@ -115,6 +112,7 @@ foreach my $s_typing (keys %h_seqs){
my $s_locus = $1;
$s_locus =~ s/\|//g;
next if(!defined $s_locus || $s_locus !~ /\S/);
my $o_gfe = GFE->new();
my $rh_gfe = $o_gfe->getGfe($s_locus,$h_seqs{$s_typing});
my $s_gfe = defined $$rh_gfe{gfe} ? $$rh_gfe{gfe} : '';
next if !defined $s_gfe || $s_gfe !~ /\S/;
Expand Down
8 changes: 4 additions & 4 deletions GFE_Submission/bin/gfe_test.pl
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ =head1 SUBROUTINES
$o_gfe->verbose(1);
$o_gfe->return_structure(0);

my $s_path = `echo \$PATH`;chomp($s_path);
foreach my $s_p (split(/:/,$s_path)){
print STDERR "PATH: ".$s_p,"\n";
}
# my $s_path = `echo \$PATH`;chomp($s_path);
# foreach my $s_p (split(/:/,$s_path)){
# print STDERR "PATH: ".$s_p,"\n";
# }

my $s_hml = "$FindBin::Bin/../t/resources/hmltest1.HML";
my $rh_gfe = $o_gfe->getGfeHmlNextflow($s_hml);
Expand Down
Loading

0 comments on commit 360abe7

Please sign in to comment.