From b6b61b916beaca9dde8478d4b6b7684be6d6213f Mon Sep 17 00:00:00 2001 From: Md Asadullah Turja Date: Tue, 1 Mar 2022 13:54:43 -0500 Subject: [PATCH 1/2] Adding s4ext for DeepLearningUI extension --- DeepLearningUI.s4ext | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 DeepLearningUI.s4ext diff --git a/DeepLearningUI.s4ext b/DeepLearningUI.s4ext new file mode 100644 index 000000000..d3e4cb5b1 --- /dev/null +++ b/DeepLearningUI.s4ext @@ -0,0 +1,44 @@ +# +# First token of each non-comment line is the keyword and the rest of the line +# (including spaces) is the value. +# - the value can be blank +# + +# This is source code manager (i.e. svn) +scm git +scmurl https://github.com/mturja-vf-ic-bd/SlicerDeepLearningUI.git +scmrevision main + +# list dependencies +# - These should be names of other modules that have .s4ext files +# - The dependencies will be built first +depends NA + +# Inner build directory (default is ".") +build_subdirectory . + +# homepage +homepage https://github.com/mturja-vf-ic-bd/SlicerDeepLearningUI.git + +# Firstname1 Lastname1 ([SubOrg1, ]Org1), Firstname2 Lastname2 ([SubOrg2, ]Org2) +# For example: Jane Roe (Superware), John Doe (Lab1, Nowhere), Joe Bloggs (Noware) +contributors Md Asadullah Turja (UNC Chapel Hill) + +# Match category in the xml description of the module (where it shows up in Modules menu) +category Machine Learning + +# url to icon (png, size 128x128 pixels) +iconurl https://github.com/mturja-vf-ic-bd/SlicerDeepLearningUI/blob/main/DeepLearningUI.png + +# Give people an idea what to expect from this code +# - Is it just a test or something you stand behind? +status + +# One line stating what the module does +description This extension enables the user to run complex deep learning models for medical image classification using a simple UI without the need to understand any code. + +# Space separated list of urls +screenshoturls https://github.com/mturja-vf-ic-bd/SlicerDeepLearningUI/blob/main/screenshot1.png + +# 0 or 1: Define if the extension should be enabled after its installation. +enabled 1 \ No newline at end of file From 152a982770ef0c465d4902cfef3ddda764a569df Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Wed, 1 May 2024 13:36:03 -0400 Subject: [PATCH 2/2] ENH: Convert DeepLearningUI s4ext to json file --- DeepLearningUI.json | 8 ++++++++ DeepLearningUI.s4ext | 44 -------------------------------------------- 2 files changed, 8 insertions(+), 44 deletions(-) create mode 100644 DeepLearningUI.json delete mode 100644 DeepLearningUI.s4ext diff --git a/DeepLearningUI.json b/DeepLearningUI.json new file mode 100644 index 000000000..91e9020ba --- /dev/null +++ b/DeepLearningUI.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#", + "build_dependencies": [], + "build_subdirectory": ".", + "category": "Machine Learning", + "scm_revision": "main", + "scm_url": "https://github.com/mturja-vf-ic-bd/SlicerDeepLearningUI.git" +} diff --git a/DeepLearningUI.s4ext b/DeepLearningUI.s4ext deleted file mode 100644 index d3e4cb5b1..000000000 --- a/DeepLearningUI.s4ext +++ /dev/null @@ -1,44 +0,0 @@ -# -# First token of each non-comment line is the keyword and the rest of the line -# (including spaces) is the value. -# - the value can be blank -# - -# This is source code manager (i.e. svn) -scm git -scmurl https://github.com/mturja-vf-ic-bd/SlicerDeepLearningUI.git -scmrevision main - -# list dependencies -# - These should be names of other modules that have .s4ext files -# - The dependencies will be built first -depends NA - -# Inner build directory (default is ".") -build_subdirectory . - -# homepage -homepage https://github.com/mturja-vf-ic-bd/SlicerDeepLearningUI.git - -# Firstname1 Lastname1 ([SubOrg1, ]Org1), Firstname2 Lastname2 ([SubOrg2, ]Org2) -# For example: Jane Roe (Superware), John Doe (Lab1, Nowhere), Joe Bloggs (Noware) -contributors Md Asadullah Turja (UNC Chapel Hill) - -# Match category in the xml description of the module (where it shows up in Modules menu) -category Machine Learning - -# url to icon (png, size 128x128 pixels) -iconurl https://github.com/mturja-vf-ic-bd/SlicerDeepLearningUI/blob/main/DeepLearningUI.png - -# Give people an idea what to expect from this code -# - Is it just a test or something you stand behind? -status - -# One line stating what the module does -description This extension enables the user to run complex deep learning models for medical image classification using a simple UI without the need to understand any code. - -# Space separated list of urls -screenshoturls https://github.com/mturja-vf-ic-bd/SlicerDeepLearningUI/blob/main/screenshot1.png - -# 0 or 1: Define if the extension should be enabled after its installation. -enabled 1 \ No newline at end of file