-
Notifications
You must be signed in to change notification settings - Fork 50
/
addRepBase.pl
executable file
·286 lines (236 loc) · 9.16 KB
/
addRepBase.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
#!/usr/bin/perl
##---------------------------------------------------------------------------##
## File:
## @(#) addRepBase.pl
## Author:
## Robert M. Hubley rhubley@systemsbiology.org
## Jeb Rosen jeb.rosen@isbscience.org
## Description:
## Script to merge the RepBase RepeatMasker Edition
## libraries into the main RepeatMasker library.
##
#******************************************************************************
#* Copyright (C) Institute for Systems Biology 2017-2020 Developed by
#* Arian Smit and Robert Hubley.
#*
#* This work is licensed under the Open Source License v2.1. To view a copy
#* of this license, visit http://www.opensource.org/licenses/osl-2.1.php or
#* see the license.txt file contained in this distribution.
#*
#******************************************************************************
#
# ChangeLog
#
# $Log$
#
###############################################################################
#
# To Do:
#
=head1 NAME
addRepBase.pl - Merge RepBase RepeatMasker Edition into the RepeatMasker library
=head1 SYNOPSIS
Usage:
addRepBase.pl
=head1 DESCRIPTION
Merges RepBase RepeatMasker Edition (RMRBMeta.embl and RMRBSeqs.embl) with
partitioned FamDB Dfam, and makes it the main RepeatMasker library (FamDB/)
The options are:
=over 4
=item -libdir [path_to_library_directory]
Use an alternate library directory to for the primary repeat libraries.
These include the Dfam.h5 and the RBRM (Repbase RepeatMasker Edition )
distribution files. Normally these are stored/updated in the "Libraries/"
subdirectory of the main program which RepeatMasker will use by default
This parameter should only be used when it's not possible to keep the
libraries in the same place as the program.
=back
=cut
#
# Module Dependence
#
use strict;
use FindBin;
use lib $FindBin::RealBin;
use Getopt::Long;
use EMBL;
use File::Copy;
my @getopt_args = ( '-libdir=s' );
my %options = ();
unless ( &GetOptions( \%options, @getopt_args ) ) {
usage();
}
sub usage {
print "$0\n";
exec "pod2text $0";
exit( 1 );
}
# Allow the user to override the default library directory ( currently only by the command line )
my $LIBDIR = "$FindBin::Bin/Libraries";
if ( $options{'libdir'} ) {
$LIBDIR = $options{'libdir'};
if ( ! -d $LIBDIR ) {
die "The specified library directory $options{'libdir'} does not exist!\n";
}
}
my $FamDBDir = "famdb";
my $RMRBLibrary = "RMRB.embl";
if ( ! -d "$LIBDIR/$FamDBDir" ) {
die "A FamDB database is not available in $LIBDIR/$FamDBDir\n" .
"Please download at least the root FamDB data partition from\n" .
"http://dfam.org/releases/current/families/FamDB\n";
}
if ( -e "$LIBDIR/$FamDBDir/merge.working" ) {
die "It appears that a previous merge of RepBase & Dfam was interrupted or otherwise failed to\n" .
"complete. This may have left the files in $LIBDIR/$FamDBDir in\n" .
"a inconsistent state. Please delete the contents of this directory and re-download the\n" .
"root data partition (and optional additional partitions) from\n" .
"http://dfam.org/releases/current/families/FamDB before retrying to run the configure script.\n";
}
print "Rebuilding FamDB master library\n";
my $versionWarned = 0;
if ( ! -s "$LIBDIR/$RMRBLibrary") {
combineRMRBMetaWithSeqs( $LIBDIR );
}
my $libVersion = getLibraryVersionStr( "$LIBDIR/$RMRBLibrary" );
if ( !$versionWarned && $libVersion ne "20181026" ) {
$versionWarned = 1;
print "WARNING: RepBase RepeatMasker edition older than 20181026 is untested with this version of RepeatMasker.\n";
}
my $savBuf = $|;
$| = 1;
print " Merging Dfam + RepBase into FamDB library...";
$| = $savBuf;
# Setup the flag
open OUT,">$LIBDIR/$FamDBDir/merge.working" or die "Could not open $LIBDIR/$FamDBDir/merge.working for writing!\n";
print OUT "" . localtime() . "\n";
close OUT;
my $REPEATMASKER_DIR = "$FindBin::Bin";
my $FAMDB = "$REPEATMASKER_DIR/famdb.py";
my $dbInfo = `$FAMDB -i $LIBDIR/$FamDBDir info`;
if ( $dbInfo =~ /Sequencing_artifacts_only/ ) {
system("$FAMDB -i $LIBDIR/$FamDBDir append $LIBDIR/$RMRBLibrary --name 'RBRM' --description 'RBRM - RepBase RepeatMasker Edition - version $libVersion'");
} elsif ( $dbInfo !~ /Database:\s+Dfam\s+withRBRM/ ) {
system("$FAMDB -i $LIBDIR/$FamDBDir append $LIBDIR/$RMRBLibrary --name 'Dfam withRBRM' --description 'RBRM - RepBase RepeatMasker Edition - version $libVersion'");
}else {
# No need to re-append name/desc
system("$FAMDB -i $LIBDIR/$FamDBDir append $LIBDIR/$RMRBLibrary");
}
my $status = $?;
if ( $status ) {
die "Failed to append $LIBDIR/$RMRBLibrary to $LIBDIR/$FamDBDir.\n" .
"Process exited with code " . ( $status >> 8 ) . ".\n";
}
## Backup old library ( only one backup kept )
#if ( -s "$LIBDIR/$mainLibrary" ) {
# unlink( "$LIBDIR/$mainLibrary.old" )
# if ( -s "$LIBDIR/$mainLibrary.old" );
# rename( "$LIBDIR/$mainLibrary", "$LIBDIR/$mainLibrary.old" )
#}
# rename temporary file
#rename( "$LIBDIR/$mainLibrary.writing", "$LIBDIR/$mainLibrary" );
print "\r\n\n";
#system("$FAMDB -i $LIBDIR/$FamDBDir info");
# Remove working flag
unlink("$LIBDIR/$FamDBDir/merge.working");
exit(0);
####################################################################################
####################################################################################
####################################################################################
# my $versionString = getLibraryVersionStr( $libFile );
# Return the version from the header of the given library file.
sub getLibraryVersionStr {
my $libFile = shift;
open INVER, "<$libFile"
or die "getLibraryVersion(): Could not open file $libFile";
my $releaseStr = "";
my $searchLimit = 50; # 50 lines max
while ( <INVER> ) {
# RepBase RepeatMasker Edition
# CC RELEASE 20170125;
if ( /^(?:CC|##)\s+RELEASE\s+(\S+);.*/ )
{
$releaseStr = $1;
last;
}
last if ( $searchLimit-- == 0 );
}
close INVER;
return $releaseStr;
}
sub combineRMRBMetaWithSeqs {
my $LIBDIR = shift;
my $RMRBSeqLibrary = "RMRBSeqs.embl";
my $RMRBMetaLibrary = "RMRBMeta.embl";
my $RMRBLibrary = "RMRB.embl";
my $RMRBDb = new EMBL();
if ( -s "$LIBDIR/$RMRBSeqLibrary" ) {
my $savBuf = $|;
$| = 1;
print " Reading RepBase RepeatMasker Edition database...";
my $libVersion = getLibraryVersionStr( "$LIBDIR/$RMRBSeqLibrary" );
if ( $libVersion ne "20181026" ) {
$versionWarned = 1;
print "\nWARNING: RepBase RepeatMasker edition older than 20181026 is untested with this version of RepeatMasker.\n";
}
$| = $savBuf;
my $seqs = EMBL->new( fileName => "$LIBDIR/$RMRBSeqLibrary" );
my %seqId = ();
for ( my $i = 0 ; $i < $seqs->size() ; $i++ ) {
my $rec = $seqs->get( $i );
$seqId{ $rec->getId() } = $rec;
}
print "\r - Read in "
. $seqs->size()
. " sequences from $LIBDIR/$RMRBSeqLibrary\n";
undef $seqs;
my $savBuf = $|;
$| = 1;
print " Reading metadata database...";
$| = $savBuf;
my $meta = EMBL->new( fileName => "$LIBDIR/$RMRBMetaLibrary" );
my $numMerged = 0;
for ( my $i = 0 ; $i < $meta->size() ; $i++ ) {
my $mRec = $meta->get( $i );
my $sRec = $seqId{ $mRec->getId() };
if ( $mRec && $sRec ) {
$mRec->setLength( $sRec->getLength() );
$mRec->setSequence( $sRec->getSequence() );
$mRec->setComposition( 'A', $sRec->getCompositionElement( 'A' ) );
$mRec->setComposition( 'C', $sRec->getCompositionElement( 'C' ) );
$mRec->setComposition( 'G', $sRec->getCompositionElement( 'G' ) );
$mRec->setComposition( 'T', $sRec->getCompositionElement( 'T' ) );
$mRec->setComposition( 'other',
$sRec->getCompositionElement( 'other' ) );
$mRec->pushComments( "Source: RepBase RepeatMasker Edition\n" );
# Save combined RMRB.embl file
$RMRBDb->add( $mRec );
}
else {
print "Error! Could not find " . $mRec->getId() . "\n";
}
}
# Save out complete RepBase RepeatMasker Edition
my $headerStr =
"CC ****************************************************************
CC *
CC RepBase RepeatMasker Edition *
CC Please refer to GIRI (https://www.girinst.org/) for *
CC detailed copyright and licensing restrictions. *
CC *
CC RELEASE $libVersion; *
CC
CC RepeatMasker software, and maintenance are currently *
CC funded by an NIH/NHGRI R01 grant HG02939-01 to Arian Smit. *
CC *
CC ****************************************************************";
$RMRBDb->writeEMBLFile( "$LIBDIR/$RMRBLibrary", $headerStr );
print "\r - Read in "
. $meta->size()
. " annotations from $LIBDIR/$RMRBMetaLibrary\n";
} else {
die "Error! Could not find the RepBase RepeatMasker Edition sequences file,\n" .
"$RMRBSeqLibrary. Please download RepBase RepeatMasker Edition and\n" .
"extract it to the Libraries directory.\n";
}
}