Struct NeuronInfo
Annotation record of one neuron.
public readonly record struct NeuronInfo : IEquatable<NeuronInfo>
- Implements
- Inherited Members
Constructors
NeuronInfo(int, ulong, string, string, string, string, string, string, Neurotransmitter, Side, (int X, int Y, int Z)?, int)
Annotation record of one neuron.
public NeuronInfo(int Index, ulong BodyId, string Type, string Superclass, string Class, string Instance, string FlywireType, string HemibrainType, Neurotransmitter Neurotransmitter, Side Side, (int X, int Y, int Z)? Soma, int OutDegree)
Parameters
IndexintNeuron index within the checkpoint.
BodyIdulongBody / root ID in the source dataset.
TypestringCell type ("" if unannotated).
SuperclassstringSuperclass ("" if unannotated).
ClassstringClass ("" if unannotated).
InstancestringInstance name ("" if unannotated).
FlywireTypestringFlyWire cross-reference type ("" if none).
HemibrainTypestringHemibrain cross-reference type ("" if none).
NeurotransmitterNeurotransmitterPredicted transmitter.
SideSideSoma/root side.
Soma(int X, int Y, int Z)?Soma voxel coordinates, if known.
OutDegreeintNumber of outgoing edges.
Properties
BodyId
Body / root ID in the source dataset.
public ulong BodyId { get; init; }
Property Value
Class
Class ("" if unannotated).
public string Class { get; init; }
Property Value
FlywireType
FlyWire cross-reference type ("" if none).
public string FlywireType { get; init; }
Property Value
HemibrainType
Hemibrain cross-reference type ("" if none).
public string HemibrainType { get; init; }
Property Value
Index
Neuron index within the checkpoint.
public int Index { get; init; }
Property Value
Instance
Instance name ("" if unannotated).
public string Instance { get; init; }
Property Value
Neurotransmitter
Predicted transmitter.
public Neurotransmitter Neurotransmitter { get; init; }
Property Value
OutDegree
Number of outgoing edges.
public int OutDegree { get; init; }
Property Value
Side
Soma/root side.
public Side Side { get; init; }
Property Value
Soma
Soma voxel coordinates, if known.
public (int X, int Y, int Z)? Soma { get; init; }
Property Value
Superclass
Superclass ("" if unannotated).
public string Superclass { get; init; }
Property Value
Type
Cell type ("" if unannotated).
public string Type { get; init; }