tweak options for classifying readings and relationships. Needed for tla/stemmaweb#33
Tara L Andrews [Sat, 18 Jan 2014 12:24:39 +0000 (13:24 +0100)]
base/lib/Text/Tradition/Collation/Reading.pm
base/lib/Text/Tradition/Collation/Relationship.pm

index 62b592e..a482b60 100644 (file)
@@ -104,6 +104,13 @@ has 'text' => (
        writer => 'alter_text',
        );
        
+has 'is_lemma' => (
+       is => 'ro',
+       isa => 'Bool',
+       default => undef,
+       writer => 'make_lemma',
+       );
+       
 has 'is_start' => (
        is => 'ro',
        isa => 'Bool',
index d43ea21..2610f20 100644 (file)
@@ -117,11 +117,16 @@ has 'alters_meaning' => (
        default => 0,
        );
 
-has 'non_correctable' => (
+has 'a_derivable_from_b' => (
        is => 'ro',
        isa => 'Bool',
        );
-
+       
+has 'b_derivable_from_a' => (
+       is => 'ro',
+       isa => 'Bool',
+       );
+       
 has 'non_independent' => (
        is => 'ro',
        isa => 'Bool',