Skip to content

Commit

Permalink
Merge pull request #455 from fnothaft/add-serializers
Browse files Browse the repository at this point in the history
[ADAM-454] Add serializers for Avro objects which don't have serializers
  • Loading branch information
massie committed Nov 3, 2014
2 parents 0226b4f + 7e35aa8 commit 824daa8
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ class ADAMKryoRegistrator extends KryoRegistrator {
kryo.register(classOf[FlatGenotype], new AvroSerializer[FlatGenotype]())
kryo.register(classOf[DatabaseVariantAnnotation], new AvroSerializer[DatabaseVariantAnnotation]())
kryo.register(classOf[NucleotideContigFragment], new AvroSerializer[NucleotideContigFragment]())
kryo.register(classOf[Contig], new AvroSerializer[Contig]())
kryo.register(classOf[StructuralVariant], new AvroSerializer[StructuralVariant]())
kryo.register(classOf[VariantCallingAnnotations], new AvroSerializer[VariantCallingAnnotations]())
kryo.register(classOf[VariantEffect], new AvroSerializer[VariantEffect]())
kryo.register(classOf[DatabaseVariantAnnotation], new AvroSerializer[DatabaseVariantAnnotation]())
kryo.register(classOf[Dbxref], new AvroSerializer[Dbxref]())
kryo.register(classOf[Feature], new AvroSerializer[Feature]())
kryo.register(classOf[ReferencePositionWithOrientation], new ReferencePositionWithOrientationSerializer)
kryo.register(classOf[ReferencePosition], new ReferencePositionSerializer)
Expand Down

0 comments on commit 824daa8

Please sign in to comment.