gitextract_wxsffzrf/ ├── .github/ │ └── workflows/ │ └── python-package.yml ├── .gitignore ├── .idea/ │ ├── .gitignore │ ├── TransProPy.iml │ ├── inspectionProfiles/ │ │ └── profiles_settings.xml │ ├── modules.xml │ └── vcs.xml ├── LICENSE ├── README.md ├── TransProPy/ │ ├── AutoFeatureSelection.py │ ├── AutogluonSelectML.py │ ├── AutogluonTimeLimit.py │ ├── MACFCmain.py │ ├── NewMACFCmain.py │ ├── UtilsFunction1/ │ │ ├── Auc.py │ │ ├── AutoNorm.py │ │ ├── FeatureRanking.py │ │ ├── FilterSamples.py │ │ ├── GeneNames.py │ │ ├── GeneToFeatureMapping.py │ │ ├── LoadData.py │ │ ├── NewFeatureRanking.py │ │ ├── PrintResults.py │ │ └── __init__.py │ ├── UtilsFunction2/ │ │ ├── LogTransform.py │ │ ├── __init__.py │ │ └── splitdata.py │ ├── UtilsFunction3/ │ │ ├── EnsembleForRFE.py │ │ ├── ExtractAndSaveResults.py │ │ ├── ExtractCommonSamples.py │ │ ├── LoadAndPreprocessData.py │ │ ├── LoadEncodeLabels.py │ │ ├── LoadFilterTranspose.py │ │ ├── LoggingCustomScorer.py │ │ ├── PrintBoxedText.py │ │ ├── SetupFeatureSelection.py │ │ ├── SetupLoggingAndProgressBar.py │ │ ├── TqdmCustomScorer.py │ │ ├── TrainModel.py │ │ ├── UpdateProgressBar.py │ │ └── __init__.py │ └── __init__.py └── setup.py