Difference between revisions of "GotCloud: FAQs"

From Genome Analysis Wiki
Jump to navigationJump to search
(Created page with '= GotCloud Frequently Asked Questions (FAQs) = This page hopes to answer some of the FAQs about GotCloud. If you cannot find the answer to your question here, please [[GotC…')
 
Line 14: Line 14:
  
 
== Tutorial FAQs ==
 
== Tutorial FAQs ==
 +
 +
 +
= Version Problems =
 +
 +
== Version 1.07 ==
 +
 +
;Type of arg 1 to keys must be hash (not hash element) at gotcloud/bin/Conf.pm line 155, near "}) "<br />Compilation failed in require at gotcloud/bin/align.pl line 56.
 +
 +
: To fix this bug, you need to edit gotcloud/bin/Conf.pm, line 155.
 +
:Change
 +
<syntaxhighlight lang="perl">foreach my $key (keys $CONF_HASH{$section}) {</syntaxhighlight>
 +
:to
 +
<syntaxhighlight lang="perl">foreach my $key (keys %{$CONF_HASH{$section}}) {</syntaxhighlight>

Revision as of 09:17, 19 July 2013

GotCloud Frequently Asked Questions (FAQs)

This page hopes to answer some of the FAQs about GotCloud.

If you cannot find the answer to your question here, please contact us.

General FAQs

Amazon FAQs

Alignment Pipeline FAQs

Variant Calling Pipeline FAQs

Tutorial FAQs

Version Problems

Version 1.07

Type of arg 1 to keys must be hash (not hash element) at gotcloud/bin/Conf.pm line 155, near "}) "
Compilation failed in require at gotcloud/bin/align.pl line 56.
To fix this bug, you need to edit gotcloud/bin/Conf.pm, line 155.
Change
foreach my $key (keys $CONF_HASH{$section}) {
to
foreach my $key (keys %{$CONF_HASH{$section}}) {