Skip to content

Commit

Permalink
Specify "tier" for each extension
Browse files Browse the repository at this point in the history
By default, Tier 3 is assigned to all extensions. See exceptions and rationale is below.

## Tier 5:

Extensions of high importance:

- DCMQI
- DebuggingTools
- DeveloperToolsForExtensions
- DICOMwebBrowser
- LanguagePacks
- MarkupsToModel
- MONAIAuto3DSeg
- NNUNet
- ParallelProcessing
- PyTorch
- QuantitativeReporting
- SegmentEditorExtraEffects
- SegmentMesher
- SequenceRegistration
- SlicerDcm2nii
- SlicerDMRI
- SlicerElastix
- SlicerFreeSurfer
- SlicerHeart
- SlicerIGSIO
- SlicerIGT
- SlicerLookingGlass
- SlicerMorph
- SlicerNeuro
- SlicerOpenAnatomy
- SlicerOpenIGTLink
- SlicerRT
- SlicerVirtualReality
- SlicerVMTK
- SurfaceWrapSolidify
- TotalSegmentator

## Tier 1:

### No maintainer/no response to issues in issue tracker:
- ABLTemporalBoneSegmentation
- AirwaySegmentation
- BoneThicknessMapping
- DRRGenerator
- CarreraSlice
- CleverSeg
- NeedleFinder
- NvidiaAIAssistedAnnotation
- RegularizedFastMarching
- ResectionPlanner
- Scoliosis
- SegmentationAidedRegistration
- SlicerToKiwiExporter
- TOMAAT

### Experimental:
- BigImage
- SlicerAIGT

### Functionality is no longer needed or useful for very few users:
- AnglePlanesExtension (tool in Q3DC now)
- DatabaseInteractor
- ErodeDilateLabel
- MeshToLabelMap
- CurveMaker (built-in markups feature now)
- SlicerConda

### Commercial license is needed for meaningful use:
- ConnectToSupervisely
- flywheel_connect
- FlywheelCaseIterator

### Too broad name that would mislead users
- IntensitySegmenter
- TissueSegmentation
  • Loading branch information
Andras Lasso committed Nov 25, 2024
1 parent ff7a1b1 commit a30edaa
Show file tree
Hide file tree
Showing 200 changed files with 647 additions and 417 deletions.
48 changes: 38 additions & 10 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,55 @@ Thank you for contributing to 3D Slicer!

# New extension

<!-- To make sure users can find your extension, understand what it is intended for and how to use it, please complete the checklist below. You do not need to complete all the item by the time you submit the pull request, but most likely the changes will only be merged if all the tasks are done. See more information about the submission process here: https://slicer.readthedocs.io/en/latest/developer_guide/extensions.html -->
<!-- To make sure users can find your extension, understand what it is intended for and how to use it, please complete the checklist below. You do not need to complete all the item by the time you submit the pull request, but most likely the changes will only be merged if all the tasks are done. "Tier" of your extension will be determined based on the set of requirements you fulfill. See more information about the submission process here: https://slicer.readthedocs.io/en/latest/developer_guide/extensions.html.
-->


## Tier 1

Any extension that is listed in the Extensions Catalog must fulfill these requirements.

- [ ] Extension has a reasonable name (not too general, not too narrow, suggests what the extension is for)
- [ ] Repository name is Slicer+ExtensionName
- [ ] Repository name is Slicer+ExtensionName (except if the repository that hosts the extension can be also used without Slicer)
- [ ] Repository is associated with `3d-slicer-extension` GitHub topic so that it is listed [here](https://github.com/topics/3d-slicer-extension). To edit topics, click the settings icon in the right side of "About" section header and enter `3d-slicer-extension` in "Topics" and click "Save changes". To learn more about topics, read https://help.github.com/en/articles/about-topics
- [ ] Extension description summarizes in 1-2 sentences what the extension is usable (should be understandable for non-experts)
- [ ] Any known related patents must be mentioned in the extension description.
- [ ] LICENSE.txt is present in the repository root. MIT (https://choosealicense.com/licenses/mit/) or Apache (https://choosealicense.com/licenses/apache-2.0/) license is recommended. If source code license is more restrictive for users than MIT, BSD, Apache, or 3D Slicer license then the name of the used license must be mentioned in the extension description.
- [ ] LICENSE.txt is present in the repository root and the name of the license is mentioned in extension homepage. We suggest you use a permissive license that includes patent and contribution clauses. This will help protect developers and ensure the code remains freely available. MIT (https://choosealicense.com/licenses/mit/) or Apache (https://choosealicense.com/licenses/apache-2.0/) license is recommended. Read [here](https://opensource.guide/legal/#which-open-source-license-is-appropriate-for-my-project) to learn more about licenses. If source code license is more restrictive for users than MIT, BSD, Apache, or 3D Slicer license then describe the reason for the license choice and include the name of the used license in the extension description.
- [ ] Extension URL and revision (scmurl, scmrevision) is correct, consider using a branch name (main, release, ...) instead of a specific git hash to avoid re-submitting pull request whenever the extension is updated
- [ ] Extension icon URL is correct (do not use the icon's webpage but the raw data download URL that you get from the download button - it should look something like this: https://raw.githubusercontent.com/user/repo/main/SomeIcon.png)
- [ ] Screenshot URLs (screenshoturls) are correct, contains at least one
- [ ] Homepage URL points to valid webpage containing the following:
- [ ] Content of submitted json file is consistent with the top-level CMakeLists.txt file in the repository (dependencies, etc. are the same)
- Homepage URL points to valid webpage containing the following:
- [ ] Extension name
- [ ] Short description: 1-2 sentences, which summarizes what the extension is usable for
- [ ] At least one nice, informative image, that illustrates what the extension can do. It may be a screenshot.
- [ ] Description of contained modules: at one sentence for each module
- [ ] Tutorial: step-by-step description of at least the most typical use case, include a few screenshots, provide download links to sample input data set
- [ ] Publication: link to publication and/or to PubMed reference (if available)
- [ ] License: We suggest you use a permissive license that includes patent and contribution clauses. This will help protect developers and ensure the code remains freely available. We suggest you use the [Slicer License](https://github.com/Slicer/Slicer/blob/main/License.txt) or the [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0). Always mention in your README file the license you have chosen. If you choose a different license, explain why to the extension maintainers. Depending on the license we may not be able to host your work. Read [here](https://opensource.guide/legal/#which-open-source-license-is-appropriate-for-my-project) to learn more about licenses.
- [ ] Content of submitted json file is consistent with the top-level CMakeLists.txt file in the repository (dependencies, etc. are the same)
- Hide unused features in the repository to reduce noise/irrelevant information:
- [ ] Click `Settings` and in repository settings uncheck `Wiki`, `Projects`, and `Discussions` (if they are currently not used)
- Hide unused github features (such as Wiki, Projects, and Discussions, Releases, Packages) in the repository to reduce noise/irrelevant information:
- [ ] Click `Settings` and in repository settings uncheck `Wiki`, `Projects`, and `Discussions` (if they are currently not used).
- [ ] Click the settings icon next to `About` in the top-right corner of the repository main page and uncheck `Releases` and `Packages` (if they are currently not used)
<!-- If you have any questions or comments then please describe them here. -->
- The extension is safe:
- [ ] Does not include or download binaries from unreliable sources
- [ ] Does not send any information anywhere without user consent (explicit opt-in is required)

## Tier 3

Community-supported extensions.

- [ ] Documentation, tutorial, and test data are provided for most modules. A tutorial provides step-by-step description of at least the most typical use case, include a few screenshots. Any sample data sets that is used in tutorials must be registered with the Sample Data module to provide easy access to the user.
- [ ] Follows programming and user interface conventions of 3D Slicer (e.g., GUI and logic are separated, usage of popups is minimized, no unnecessary custom GUI styling, etc.)
- [ ] Maintainers respond to issues and pull request submitted to the extension's repository.
- [ ] Maintainers respond to questions directly addressed to him/her via @mention on the [Slicer Forum](https://discourse.slicer.org).
- [ ] Permissive license is used for the main functions of the extension (recommended Apache or MIT). The extension can provide additional functionality in optional components that are distributed with non-permissive license, but the user has to explicitly approve those before using them (e.g., a pop-up can be displayed that explains the licensing terms and the user has to acknowledge them to proceed).
- All requirements of tiers < 3.

## Tier 5

Critically important extensions, supported by Slicer core developers. New Slicer Stable Release is released only if all Tier 5 extension packages are successfully created on all supported platforms.

- [ ] Slicer core developers accept the responsibility of fixing any issues caused by Slicer core changes; at least one Slicer core developer (anyone who has commit right to Slicer core) must be granted commit right to the extension's repository.
- [ ] Automated tests for all critical features.
- [ ] Maintainers respond to questions related to the extension on the [Slicer Forum](https://discourse.slicer.org).
- All requirements of tiers < 5.

<!-- Feel free to add any questions or comments here. -->
5 changes: 3 additions & 2 deletions ABLTemporalBoneSegmentation.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json#",
"build_dependencies": ["SlicerElastix"],
"build_subdirectory": "inner-build",
"category": "Otolaryngology",
"scm_revision": "master",
"scm_url": "https://github.com/Auditory-Biophysics-Lab/Slicer-ABLTemporalBoneSegmentation"
"scm_url": "https://github.com/Auditory-Biophysics-Lab/Slicer-ABLTemporalBoneSegmentation",
"tier": 1
}
5 changes: 3 additions & 2 deletions AblationPlanner.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json#",
"build_dependencies": ["ModelToModelDistance"],
"build_subdirectory": ".",
"category": "Quantification",
"scm_revision": "main",
"scm_url": "https://github.com/naterex23/SlicerAblationPlanner"
"scm_url": "https://github.com/naterex23/SlicerAblationPlanner",
"tier": 3
}
5 changes: 3 additions & 2 deletions AirwaySegmentation.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json#",
"build_dependencies": [],
"build_subdirectory": ".",
"category": "Segmentation",
"scm_revision": "master",
"scm_url": "https://github.com/Slicer/SlicerAirwaySegmentation"
"scm_url": "https://github.com/Slicer/SlicerAirwaySegmentation",
"tier": 1
}
5 changes: 3 additions & 2 deletions AnglePlanesExtension.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json#",
"build_dependencies": [],
"build_subdirectory": ".",
"category": "Shape Analysis",
"scm_revision": "master",
"scm_url": "https://github.com/DCBIA-OrthoLab/AnglePlanes-Extension.git"
"scm_url": "https://github.com/DCBIA-OrthoLab/AnglePlanes-Extension.git",
"tier": 1
}
5 changes: 3 additions & 2 deletions AnomalousFiltersExtension.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json#",
"build_dependencies": [],
"build_subdirectory": ".",
"category": "Filtering",
"scm_revision": "main",
"scm_url": "https://github.com/CSIM-Toolkits/AnomalousFiltersExtension.git"
"scm_url": "https://github.com/CSIM-Toolkits/AnomalousFiltersExtension.git",
"tier": 3
}
5 changes: 3 additions & 2 deletions ArduinoController.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json#",
"build_dependencies": [],
"build_subdirectory": ".",
"category": "Developer Tools",
"scm_revision": "master",
"scm_url": "https://github.com/pzaffino/SlicerArduinoController.git"
"scm_url": "https://github.com/pzaffino/SlicerArduinoController.git",
"tier": 3
}
5 changes: 3 additions & 2 deletions AstmPhantomTest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json#",
"build_dependencies": ["SlicerOpenIGTLink"],
"build_subdirectory": ".",
"category": "IGT",
"scm_revision": "master",
"scm_url": "https://github.com/Atracsys/SlicerAstmPhantomTest.git"
"scm_url": "https://github.com/Atracsys/SlicerAstmPhantomTest.git",
"tier": 3
}
5 changes: 3 additions & 2 deletions Auto3dgm.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json#",
"build_dependencies": [],
"build_subdirectory": ".",
"category": "Auto3dgm",
"scm_revision": "master",
"scm_url": "https://github.com/ToothAndClaw/SlicerAuto3dgm"
"scm_url": "https://github.com/ToothAndClaw/SlicerAuto3dgm",
"tier": 3
}
5 changes: 3 additions & 2 deletions AutomatedDentalTools.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json#",
"build_dependencies": ["SlicerDentalModelSeg", "SlicerConda"],
"build_subdirectory": ".",
"category": "Segmentation",
"scm_revision": "main",
"scm_url": "https://github.com/DCBIA-OrthoLab/SlicerAutomatedDentalTools.git"
"scm_url": "https://github.com/DCBIA-OrthoLab/SlicerAutomatedDentalTools.git",
"tier": 3
}
5 changes: 3 additions & 2 deletions Autoscroll.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json##",
"build_dependencies": [],
"build_subdirectory": ".",
"category": "Segmentation",
"scm_revision": "master",
"scm_url": "https://github.com/lassoan/SlicerAutoscroll"
"scm_url": "https://github.com/lassoan/SlicerAutoscroll",
"tier": 3
}
5 changes: 3 additions & 2 deletions BigImage.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json##",
"build_dependencies": [],
"build_subdirectory": ".",
"category": "BigImage",
"scm_revision": "main",
"scm_url": "https://github.com/gaoyi/SlicerBigImage.git"
"scm_url": "https://github.com/gaoyi/SlicerBigImage.git",
"tier": 1
}
5 changes: 3 additions & 2 deletions BoneReconstructionPlanner.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json##",
"build_dependencies": ["SurfaceWrapSolidify", "MarkupsToModel", "Sandbox"],
"build_subdirectory": ".",
"category": "Planning",
"scm_revision": "main",
"scm_url": "https://github.com/SlicerIGT/SlicerBoneReconstructionPlanner.git"
"scm_url": "https://github.com/SlicerIGT/SlicerBoneReconstructionPlanner.git",
"tier": 3
}
5 changes: 3 additions & 2 deletions BoneTextureExtension.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json##",
"build_dependencies": [],
"build_subdirectory": "inner-build",
"category": "Quantification",
"scm_revision": "master",
"scm_url": "https://github.com/Kitware/BoneTextureExtension.git"
"scm_url": "https://github.com/Kitware/BoneTextureExtension.git",
"tier": 3
}
5 changes: 3 additions & 2 deletions BoneThicknessMapping.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json##",
"build_dependencies": [],
"build_subdirectory": ".",
"category": "Shape Analysis",
"scm_revision": "master",
"scm_url": "https://github.com/Auditory-Biophysics-Lab/SlicerBoneThicknessMappingExtension"
"scm_url": "https://github.com/Auditory-Biophysics-Lab/SlicerBoneThicknessMappingExtension",
"tier": 1
}
5 changes: 3 additions & 2 deletions BrainVolumeRefinement.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json##",
"build_dependencies": [],
"build_subdirectory": ".",
"category": "Segmentation",
"scm_revision": "main",
"scm_url": "https://github.com/CSIM-Toolkits/SlicerBrainVolumeRefinement.git"
"scm_url": "https://github.com/CSIM-Toolkits/SlicerBrainVolumeRefinement.git",
"tier": 3
}
5 changes: 3 additions & 2 deletions BreastImplantAnalyzer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json#",
"build_dependencies": [],
"build_subdirectory": ".",
"category": "Quantification",
"scm_revision": "master",
"scm_url": "https://github.com/lassoan/SlicerBreastImplantAnalyzer.git"
"scm_url": "https://github.com/lassoan/SlicerBreastImplantAnalyzer.git",
"tier": 3
}
5 changes: 3 additions & 2 deletions BreastUltrasoundAnalysis.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json#",
"build_dependencies": ["PyTorch"],
"build_subdirectory": ".",
"category": "Utilities",
"scm_revision": "master",
"scm_url": "https://github.com/ZhyBrian/SlicerBreastUltrasoundAnalysis.git"
"scm_url": "https://github.com/ZhyBrian/SlicerBreastUltrasoundAnalysis.git",
"tier": 3
}
5 changes: 3 additions & 2 deletions Breast_DCEMRI_FTV.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json#",
"build_dependencies": [],
"build_subdirectory": ".",
"category": "FTV Segmentation",
"scm_revision": "master",
"scm_url": "https://github.com/radiology-research/SlicerBreast_DCEMRI_FTV"
"scm_url": "https://github.com/radiology-research/SlicerBreast_DCEMRI_FTV",
"tier": 3
}
5 changes: 3 additions & 2 deletions CBCTToothSegmentation.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json#",
"build_dependencies": [],
"build_subdirectory": ".",
"category": "Segmentation",
"scm_revision": "master",
"scm_url": "https://github.com/KitwareMedical/SlicerCBCTToothSegmentation.git"
"scm_url": "https://github.com/KitwareMedical/SlicerCBCTToothSegmentation.git",
"tier": 3
}
5 changes: 3 additions & 2 deletions CMFreg.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json#",
"build_dependencies": [],
"build_subdirectory": ".",
"category": "Registration",
"scm_revision": "master",
"scm_url": "https://github.com/DCBIA-OrthoLab/CMFreg.git"
"scm_url": "https://github.com/DCBIA-OrthoLab/CMFreg.git",
"tier": 3
}
5 changes: 3 additions & 2 deletions CarreraSlice.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#",
"$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.1.json#",
"build_dependencies": [],
"build_subdirectory": ".",
"category": "Segmentation",
"scm_revision": "master",
"scm_url": "https://github.com/ikolesov/CarreraSlice.git"
"scm_url": "https://github.com/ikolesov/CarreraSlice.git",
"tier": 1
}
Loading

0 comments on commit a30edaa

Please sign in to comment.