File: conv_hssp2saf.pl

package info (click to toggle)
librg-utils-perl 1.0.43-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,640 kB
  • sloc: perl: 9,665; sh: 625; makefile: 44
file content (20 lines) | stat: -rwxr-xr-x 687 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/perl
no warnings 'deprecated';
#------------------------------------------------------------------------------#
#	Copyright				        	1998	       #
#	Burkhard Rost		rost@EMBL-Heidelberg.DE			       #
#	Wilckensstr. 15		http://www.embl-heidelberg.de/~rost/	       #
#	D-69120 Heidelberg						       #
#				version 0.1   	May,    	1998	       #
#------------------------------------------------------------------------------#
$[ =1 ;				# sets array count to start at 1, not at 0

use RG::Utils::Conv_hssp2saf;

($Lok,$msg)=
    &RG::Utils::Conv_hssp2saf::conv_hssp2saf(@ARGV);

die( "*** package RG::Utils::Conv_hssp2saf returned ERROR:\n".$msg." " ) if (! $Lok);

exit(0);