-
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.
Merge pull request #4 from MattOates/feature/update_data_download
Make timeout waiting for ELM ten minutes to try and improve chance of…
- Loading branch information
Showing
11 changed files
with
93 additions
and
40 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 |
---|---|---|
|
@@ -28,3 +28,4 @@ inc/ | |
nytprof.out | ||
pm_to_blib | ||
pod2htm*.tmp | ||
fatlib/ |
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,32 @@ | ||
use strict; | ||
use warnings; | ||
use Module::Build; | ||
|
||
use 5.008; | ||
|
||
|
||
my $builder = Module::Build->new( | ||
module_name => 'ELM', | ||
license => 'lgpl_3', | ||
dist_author => 'Matt Oates <mattoates@gmail.com>', | ||
dist_abstract => 'CLI tool for assigning Eukaryotic Linear Motifs from the ELM.eu.org database', | ||
create_makefile_pl => 0, #'traditional', | ||
script_files => 'bin/melm', | ||
create_readme => 0, | ||
requires => { | ||
'LWP::UserAgent' => '6.15', | ||
'BioPerl' => '1.7.2', | ||
'Class::Tiny' => '1.004', | ||
'Pod::Usage' => '1.69' | ||
}, | ||
build_requires => { | ||
'Test::More' => '0.47', | ||
'Test::Pod::Coverage' => '1.10', | ||
'Test::Pod' => '1.51', | ||
'Devel::Cover' => '1.23', | ||
'Devel::Cover::Report::Coveralls' => '0.11' | ||
}, | ||
); | ||
|
||
$builder->create_build_script(); | ||
|
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,27 +1,32 @@ | ||
###2014-08-30 | ||
* First features added. | ||
###2019-05-17 | ||
* Updated timeout so that downloads from ELM.eu.org are more likely to succeed. | ||
* Cut a new maintenance release 1.4.2 | ||
|
||
###2014-09-05 | ||
* Masking with only specific ELM classes included based on expect value and motif type | ||
###2016-07-05 | ||
* Majority of refactor complete | ||
|
||
###2014-09-08 | ||
* ELM instance downloading | ||
* False Positive logic filtering based on ELM instances library. | ||
* GFF3 and assignment output | ||
###2016-06-25 | ||
* Huge refactor into split packages allowing more ELM based tools, releases now are fatpack | ||
|
||
###2016-05-23 | ||
* Removed bitrot due to changes at ELM.eu.org and enabled support for v1.4 of ELM | ||
|
||
###2014-09-10 | ||
* Allowed for the script to upgrade itself from GitHub and made it a bit more friendly to use | ||
|
||
###2014-09-09 | ||
* Integrated ANCHOR predictions if this is installed on the system (independent of OS) | ||
* Limit motif assignment to predicted binding regions (MoRF) | ||
* Limit motif assignment to predicted disordered regions | ||
|
||
###2014-09-10 | ||
* Allowed for the script to upgrade itself from GitHub and made it a bit more friendly to use | ||
###2014-09-08 | ||
* ELM instance downloading | ||
* False Positive logic filtering based on ELM instances library. | ||
* GFF3 and assignment output | ||
|
||
###2016-05-23 | ||
* Removed bitrot due to changes at ELM.eu.org and enabled support for v1.4 of ELM | ||
###2014-09-05 | ||
* Masking with only specific ELM classes included based on expect value and motif type | ||
|
||
###2016-06-25 | ||
* Huge refactor into split packages allowing more ELM based tools, releases now are fatpack | ||
###2014-08-30 | ||
* First features added. | ||
|
||
###2016-07-05 | ||
* Majority of refactor complete |
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
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
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
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
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
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
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
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