copy_vg_head.pl 440 Bytes
Newer Older
priyank's avatar
priyank committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#!/usr/bin/perl

#for details please check get_head.pl
sub copy_vg_head
{
	my $sent=@_[0];
	my $vibh_home = @_[1];
	my $src=$vibh_home . "/src";
	require "$vibh_home/API/shakti_tree_api.pl";
	require "$vibh_home/API/feature_filter.pl";
	require "$src/get_head_vg.pl";


	&copy_head_vg("VGF",$sent,$vibh_home);
	&copy_head_vg("VGNF",$sent,$vibh_home);
	&copy_head_vg("VGINF",$sent,$vibh_home);
	&copy_head_vg("VGNN",$sent,$vibh_home);
}
1;