Skip to content

Commit

Permalink
Semgroups are nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
qqndrew committed Jan 28, 2023
1 parent a45b9a9 commit d399138
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.ohnlp.medtagger</groupId>
<artifactId>medtagger</artifactId>
<version>1.0.50</version>
<version>1.0.51</version>
<description>The MedTagger biomedical information extraction pipeline</description>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public Schema calculateOutputSchema(Schema schema) {
fields.add(Schema.Field.of("medtagger_experiencer", Schema.FieldType.STRING));
fields.add(Schema.Field.of("medtagger_status", Schema.FieldType.STRING));
fields.add(Schema.Field.of("medtagger_offset", Schema.FieldType.INT32));
fields.add(Schema.Field.of("medtagger_semgroups", Schema.FieldType.STRING));
fields.add(Schema.Field.of("medtagger_semgroups", Schema.FieldType.STRING).withNullable(true));
this.outputSchema = Schema.of(fields.toArray(new Schema.Field[0]));
return this.outputSchema;
}
Expand Down

0 comments on commit d399138

Please sign in to comment.