feat: Introduce Demo Scripts Demonstrating Usage of load_file and preprocess
#3
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added Demo Codes (For
load_fileandpreprocessFunctions)This Pull Request (PR) includes demo codes demonstrating how to use the
load_fileandpreprocessfunctions.Changes:
load_filefunction. This script shows how to read a specified.h5adfile, create anAnnDataobject, and print its basic information.preprocessfunction. This script demonstrates running the function on a sampleAnnDataobject (either by creating a new one or loading an existing.h5adfile) and printing the basic information of the processedAnnDataobject.How Tested:
load_filefunction successfully loaded the specified.h5adfile.preprocessfunction successfully applied normalization, log transformation, regression, and scaling steps on the sample data.Demo Output:
The screenshot is the output obtained from running the demo codes. The demonstration shows that the codes are working correctly.

Important Note:
This PR only includes demo codes, and no changes have been made to the main codebase.
Conclusion:
I believe that the added demo codes clearly illustrate the usage of the
load_fileandpreprocessfunctions.