Merge branch 'master' of github.com:tla/stemmatology
[scpubgit/stemmatology.git] / script / make_tradition.pl
CommitLineData
910a0a6d 1#!/usr/bin/env perl
2
3use lib 'lib';
4use strict;
5use warnings;
6use Getopt::Long;
7use Text::Tradition;
4e5a7b2c 8use Text::Tradition::StemmaUtil;
910a0a6d 9
10binmode STDERR, ":utf8";
11binmode STDOUT, ":utf8";
12eval { no warnings; binmode $DB::OUT, ":utf8"; };
13
a7fb3133 14my( $informat, $inbase, $outformat, $help, $linear, $name, $HACK, $sep )
4e5a7b2c 15 = ( '', '', '', '', 1, 'Tradition', 0, "\t" );
910a0a6d 16
408449b7 17GetOptions( 'i|in=s' => \$informat,
18 'b|base=s' => \$inbase,
19 'o|out=s' => \$outformat,
910a0a6d 20 'l|linear!' => \$linear,
aa71409f 21 'n|name=s' => \$name,
408449b7 22 'h|help' => \$help,
a7fb3133 23 'sep=s' => \$sep,
408449b7 24 'hack' => \$HACK,
910a0a6d 25 );
26
27if( $help ) {
28 help();
29}
30
fa954f4c 31unless( $informat =~ /^(CSV|CTE|KUL|Self|TEI|CollateX|tab(ular)?)|stone$/i ) {
910a0a6d 32 help( "Input format must be one of CollateX, CSV, CTE, Self, TEI" );
33}
34$informat = 'CollateX' if $informat =~ /^c(ollate)?x$/i;
35$informat = 'KUL' if $informat =~ /^kul$/i;
36$informat = 'CTE' if $informat =~ /^cte$/i;
37$informat = 'Self' if $informat =~ /^self$/i;
38$informat = 'TEI' if $informat =~ /^tei$/i;
d9e873d0 39$informat = 'Tabular' if $informat =~ /^tab$/i;
fa954f4c 40$informat = 'CollateText' if $informat =~ /^stone$/i;
910a0a6d 41
42unless( $outformat =~ /^(graphml|svg|dot|stemma|csv)$/ ) {
43 help( "Output format must be one of graphml, svg, csv, stemma, or dot" );
44}
45
46# Do we have a base if we need it?
fa954f4c 47if( $informat =~ /^(KUL|CollateText)$/ && !$inbase ) {
910a0a6d 48 help( "$informat input needs a base text" );
49}
aa71409f 50$sep = "\t" if $sep eq 'tab';
fa954f4c 51
910a0a6d 52my $input = $ARGV[0];
910a0a6d 53
54# First: read the base. Make a graph, but also note which
55# nodes represent line beginnings.
dfc37e38 56my %args = ( 'input' => $informat,
57 'file' => $input,
910a0a6d 58 'linear' => $linear );
59$args{'base'} = $inbase if $inbase;
408449b7 60$args{'name'} = $name if $name;
a7fb3133 61$args{'sep_char'} = $sep if $informat eq 'Tabular';
fa954f4c 62### Custom hacking for Stone
63if( $informat eq 'CollateText' ) {
64 $args{'sigla'} = [ qw/ S M X V Z Bb B K W L / ];
65}
910a0a6d 66my $tradition = Text::Tradition->new( %args );
67
68### Custom hacking
69# Remove witnesses C, E, G in the Matthew text
70if( $HACK ) {
4e5a7b2c 71 my @togo = qw/ C E G /;
72 $tradition->collation->clear_witness( @togo );
73 $tradition->del_witness( @togo );
910a0a6d 74}
75
76# Now output what we have been asked to.
77if( $outformat eq 'stemma' ) {
4e5a7b2c 78 my $cdata = character_input( $tradition->collation->make_alignment_table );
79 my( $result, $tree ) = phylip_pars( $cdata );
910a0a6d 80 if( $result ) {
81 print $tree;
82 } else {
83 print STDERR "Bad result: $tree";
84 }
85} else {
86 my $output = "as_$outformat";
87 print $tradition->collation->$output();
88}
89
90sub help {
91 my( $msg ) = @_;
92 print STDERR << "EOF"
93Usage: $0 -i [format] -o [format] (--base [filename]) (--(no)linear) [inputfile]
94 i, input: Format of the input file. Must be one of CollateX, CSV, CTE, Self, TEI.
95 o, output: Format of the output. Must be one of svg, dot, graphml, csv, stemma.
96 b, base: Filename that contains a base text. Needed for CSV input.
97 l, linear: Treat transposed readings separately, producing a linear graph.
98 If nolinear, treat transposed readings as the same node.
99 h, help: Print this message.
100EOF
101 ;
102 if( $msg ) {
103 print STDERR "$msg\n";
104 }
105 exit ($msg ? 1 : 0 );
106}