-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Full workflow, with explicit outputs and TODOs resolved.
- Loading branch information
Showing
4 changed files
with
68 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
**/__pycache__/* | ||
.nextflow* | ||
*/work/* | ||
*/logs/* | ||
*/logs/* | ||
**/ec_info/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/usr/bin/env perl | ||
|
||
use FindBin qw($Bin); | ||
use Getopt::Long; | ||
use strict; | ||
use warnings; | ||
use LWP::UserAgent; | ||
|
||
my $url; | ||
|
||
GetOptions( | ||
"url=s" => \$url | ||
); | ||
|
||
|
||
my $ua = LWP::UserAgent->new; | ||
$ua->timeout(10); | ||
$ua->env_proxy; | ||
my $up=0; | ||
my $response = $ua->get($url); | ||
|
||
if ($response->is_success) { | ||
$up=1 | ||
} | ||
else { | ||
die("$url is not up!") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
runAnnotation/test_files/parameters/annotation_prokka_custHMM.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"inputContigs": "test_files/contigs_700up.fa", | ||
"taxKingdom": "Bacteria", | ||
"evalue": "1e-09", | ||
"gcode": "11", | ||
"keggView": true, | ||
"outDir": "prokka_ann", | ||
"customHMM": "test_files/HAMAP.hmm" | ||
} |