CanvasPartition.Segmentation.Segmentation C# (CSharp) Méthode

Segmentation() public méthode

public Segmentation ( string inputBinPath, string forbiddenBedPath, string dataType = "logratio", int maxInterBinDistInSegment = 1000000 ) : System
inputBinPath string
forbiddenBedPath string
dataType string
maxInterBinDistInSegment int
Résultat System
        public Segmentation(string inputBinPath, string forbiddenBedPath, string dataType = "logratio",
            int maxInterBinDistInSegment = 1000000)
        {
            this.InputBinPath = inputBinPath;
            this.DataType = dataType;
            this.SegmentationResults = null;
            this.ForbiddenIntervalBedPath = forbiddenBedPath;
            this.MaxInterBinDistInSegment = maxInterBinDistInSegment;
            // Read the input file:
            this.ReadBEDInput();
        }