smftools 0.1.1__py3-none-any.whl → 0.1.6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. smftools-0.1.6.dist-info/METADATA +127 -0
  2. smftools-0.1.6.dist-info/RECORD +4 -0
  3. smftools/__init__.py +0 -25
  4. smftools/_settings.py +0 -19
  5. smftools/_version.py +0 -1
  6. smftools/datasets/F1_hybrid_NKG2A_enhander_promoter_GpC_conversion_SMF.h5ad.gz +0 -0
  7. smftools/datasets/__init__.py +0 -9
  8. smftools/datasets/dCas9_m6A_invitro_kinetics.h5ad.gz +0 -0
  9. smftools/datasets/datasets.py +0 -27
  10. smftools/informatics/__init__.py +0 -12
  11. smftools/informatics/bam_conversion.py +0 -47
  12. smftools/informatics/bam_direct.py +0 -49
  13. smftools/informatics/basecalls_to_adata.py +0 -42
  14. smftools/informatics/fast5_to_pod5.py +0 -19
  15. smftools/informatics/helpers/LoadExperimentConfig.py +0 -74
  16. smftools/informatics/helpers/__init__.py +0 -42
  17. smftools/informatics/helpers/align_and_sort_BAM.py +0 -52
  18. smftools/informatics/helpers/archived/informatics.py +0 -260
  19. smftools/informatics/helpers/archived/load_adata.py +0 -516
  20. smftools/informatics/helpers/binarize_converted_base_identities.py +0 -31
  21. smftools/informatics/helpers/canoncall.py +0 -23
  22. smftools/informatics/helpers/converted_BAM_to_adata.py +0 -164
  23. smftools/informatics/helpers/count_aligned_reads.py +0 -39
  24. smftools/informatics/helpers/extract_base_identities.py +0 -43
  25. smftools/informatics/helpers/extract_mods.py +0 -51
  26. smftools/informatics/helpers/find_conversion_sites.py +0 -59
  27. smftools/informatics/helpers/generate_converted_FASTA.py +0 -79
  28. smftools/informatics/helpers/get_native_references.py +0 -28
  29. smftools/informatics/helpers/make_dirs.py +0 -21
  30. smftools/informatics/helpers/make_modbed.py +0 -27
  31. smftools/informatics/helpers/modQC.py +0 -27
  32. smftools/informatics/helpers/modcall.py +0 -26
  33. smftools/informatics/helpers/modkit_extract_to_adata.py +0 -367
  34. smftools/informatics/helpers/one_hot_encode.py +0 -19
  35. smftools/informatics/helpers/separate_bam_by_bc.py +0 -41
  36. smftools/informatics/helpers/split_and_index_BAM.py +0 -29
  37. smftools/informatics/pod5_conversion.py +0 -53
  38. smftools/informatics/pod5_direct.py +0 -55
  39. smftools/informatics/pod5_to_adata.py +0 -40
  40. smftools/informatics/readwrite.py +0 -106
  41. smftools/informatics/subsample_pod5.py +0 -48
  42. smftools/plotting/__init__.py +0 -0
  43. smftools/preprocessing/__init__.py +0 -29
  44. smftools/preprocessing/append_C_context.py +0 -46
  45. smftools/preprocessing/archives/preprocessing.py +0 -614
  46. smftools/preprocessing/binarize_on_Youden.py +0 -42
  47. smftools/preprocessing/binary_layers_to_ohe.py +0 -30
  48. smftools/preprocessing/calculate_complexity.py +0 -71
  49. smftools/preprocessing/calculate_converted_read_methylation_stats.py +0 -45
  50. smftools/preprocessing/calculate_coverage.py +0 -41
  51. smftools/preprocessing/calculate_pairwise_hamming_distances.py +0 -27
  52. smftools/preprocessing/calculate_position_Youden.py +0 -104
  53. smftools/preprocessing/calculate_read_length_stats.py +0 -32
  54. smftools/preprocessing/clean_NaN.py +0 -38
  55. smftools/preprocessing/filter_converted_reads_on_methylation.py +0 -27
  56. smftools/preprocessing/filter_reads_on_length.py +0 -39
  57. smftools/preprocessing/invert_adata.py +0 -22
  58. smftools/preprocessing/mark_duplicates.py +0 -119
  59. smftools/preprocessing/min_non_diagonal.py +0 -25
  60. smftools/preprocessing/remove_duplicates.py +0 -18
  61. smftools/readwrite.py +0 -106
  62. smftools/tools/__init__.py +0 -0
  63. smftools-0.1.1.dist-info/METADATA +0 -88
  64. smftools-0.1.1.dist-info/RECORD +0 -64
  65. {smftools-0.1.1.dist-info → smftools-0.1.6.dist-info}/WHEEL +0 -0
  66. {smftools-0.1.1.dist-info → smftools-0.1.6.dist-info}/licenses/LICENSE +0 -0
smftools/readwrite.py DELETED
@@ -1,106 +0,0 @@
1
- ## readwrite ##
2
-
3
- ######################################################################################################
4
- ## Datetime functionality
5
- def date_string():
6
- """
7
- Each time this is called, it returns the current date string
8
- """
9
- from datetime import datetime
10
- current_date = datetime.now()
11
- date_string = current_date.strftime("%Y%m%d")
12
- date_string = date_string[2:]
13
- return date_string
14
-
15
- def time_string():
16
- """
17
- Each time this is called, it returns the current time string
18
- """
19
- from datetime import datetime
20
- current_time = datetime.now()
21
- return current_time.strftime("%H:%M:%S")
22
- ######################################################################################################
23
-
24
- ######################################################################################################
25
- ## Numpy, Pandas, Anndata functionality
26
- def adata_to_df(adata, layer=None):
27
- """
28
- Input: An adata object with a specified layer.
29
- Output: A dataframe for the specific layer.
30
- """
31
- import pandas as pd
32
- import anndata as ad
33
-
34
- # Extract the data matrix from the given layer
35
- if layer:
36
- data_matrix = adata.layers[layer]
37
- else:
38
- data_matrix = adata.X
39
- # Extract observation (read) annotations
40
- obs_df = adata.obs
41
- # Extract variable (position) annotations
42
- var_df = adata.var
43
- # Convert data matrix and annotations to pandas DataFrames
44
- df = pd.DataFrame(data_matrix, index=obs_df.index, columns=var_df.index)
45
- return df
46
-
47
- def save_matrix(matrix, save_name):
48
- """
49
- Input: A numpy matrix and a save_name
50
- Output: A txt file representation of the data matrix
51
- """
52
- import numpy as np
53
- np.savetxt(f'{save_name}.txt', matrix)
54
-
55
- def concatenate_h5ads(output_file, file_suffix='h5ad.gz', delete_inputs=True):
56
- """
57
- Concatenate all h5ad files in a directory and delete them after the final adata is written out.
58
- Input: an output file path relative to the directory in which the function is called
59
- """
60
- import os
61
- import anndata as ad
62
- # Runtime warnings
63
- import warnings
64
- warnings.filterwarnings('ignore', category=UserWarning, module='anndata')
65
- warnings.filterwarnings('ignore', category=FutureWarning, module='anndata')
66
-
67
- # List all files in the directory
68
- files = os.listdir(os.getcwd())
69
- # get current working directory
70
- cwd = os.getcwd()
71
- suffix = file_suffix
72
- # Filter file names that contain the search string in their filename and keep them in a list
73
- hdfs = [hdf for hdf in files if suffix in hdf]
74
- # Sort file list by names and print the list of file names
75
- hdfs.sort()
76
- print('{0} sample files found: {1}'.format(len(hdfs), hdfs))
77
- # Iterate over all of the hdf5 files and concatenate them.
78
- final_adata = None
79
- for hdf in hdfs:
80
- print('{0}: Reading in {1} hdf5 file'.format(time_string(), hdf))
81
- temp_adata = ad.read_h5ad(hdf)
82
- if final_adata:
83
- print('{0}: Concatenating final adata object with {1} hdf5 file'.format(time_string(), hdf))
84
- final_adata = ad.concat([final_adata, temp_adata], join='outer', index_unique=None)
85
- else:
86
- print('{0}: Initializing final adata object with {1} hdf5 file'.format(time_string(), hdf))
87
- final_adata = temp_adata
88
- print('{0}: Writing final concatenated hdf5 file'.format(time_string()))
89
- final_adata.write_h5ad(output_file, compression='gzip')
90
-
91
- # Delete the individual h5ad files and only keep the final concatenated file
92
- if delete_inputs:
93
- files = os.listdir(os.getcwd())
94
- hdfs = [hdf for hdf in files if suffix in hdf]
95
- if output_file in hdfs:
96
- hdfs.remove(output_file)
97
- # Iterate over the files and delete them
98
- for hdf in hdfs:
99
- try:
100
- os.remove(hdf)
101
- print(f"Deleted file: {hdf}")
102
- except OSError as e:
103
- print(f"Error deleting file {hdf}: {e}")
104
- else:
105
- print('Keeping input files')
106
- ######################################################################################################
File without changes
@@ -1,88 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: smftools
3
- Version: 0.1.1
4
- Summary: Single Molecule Footprinting Analysis in Python.
5
- Project-URL: Source, https://github.com/jkmckenna/smftools
6
- Author: Joseph McKenna
7
- Maintainer-email: Joseph McKenna <jkmckenna@berkeley.edu>
8
- License-Expression: MIT
9
- License-File: LICENSE
10
- Keywords: anndata,chromatin-accessibility,machine-learning,nanopore,protein-dna-binding,single-locus,single-molecule-footprinting
11
- Classifier: Development Status :: 2 - Pre-Alpha
12
- Classifier: Environment :: Console
13
- Classifier: Intended Audience :: Developers
14
- Classifier: Intended Audience :: Science/Research
15
- Classifier: License :: OSI Approved :: MIT License
16
- Classifier: Natural Language :: English
17
- Classifier: Operating System :: MacOS :: MacOS X
18
- Classifier: Programming Language :: Python :: 3
19
- Classifier: Programming Language :: Python :: 3.9
20
- Classifier: Programming Language :: Python :: 3.10
21
- Classifier: Programming Language :: Python :: 3.11
22
- Classifier: Programming Language :: Python :: 3.12
23
- Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
24
- Classifier: Topic :: Scientific/Engineering :: Visualization
25
- Requires-Python: >=3.9
26
- Requires-Dist: anndata>=0.10.0
27
- Requires-Dist: biopython>=1.79
28
- Requires-Dist: cython>=0.29.28
29
- Requires-Dist: networkx>=3.2
30
- Requires-Dist: numpy<2,>=1.22.0
31
- Requires-Dist: pandas>=1.4.2
32
- Requires-Dist: pod5>=0.1.21
33
- Requires-Dist: pomegranate>1.0.0
34
- Requires-Dist: pysam>=0.19.1
35
- Requires-Dist: scanpy>=1.9
36
- Requires-Dist: scikit-learn>=1.0.2
37
- Requires-Dist: scipy>=1.7.3
38
- Requires-Dist: seaborn>=0.11
39
- Requires-Dist: torch>=1.9.0
40
- Requires-Dist: tqdm
41
- Provides-Extra: base-tests
42
- Requires-Dist: pytest; extra == 'base-tests'
43
- Requires-Dist: pytest-cov; extra == 'base-tests'
44
- Provides-Extra: docs
45
- Requires-Dist: ipython>=7.20; extra == 'docs'
46
- Requires-Dist: matplotlib!=3.6.1; extra == 'docs'
47
- Requires-Dist: myst-nb>=1; extra == 'docs'
48
- Requires-Dist: myst-parser>=2; extra == 'docs'
49
- Requires-Dist: nbsphinx>=0.9; extra == 'docs'
50
- Requires-Dist: readthedocs-sphinx-search; extra == 'docs'
51
- Requires-Dist: setuptools; extra == 'docs'
52
- Requires-Dist: sphinx-autodoc-typehints>=1.25.2; extra == 'docs'
53
- Requires-Dist: sphinx-book-theme>=1.1.0; extra == 'docs'
54
- Requires-Dist: sphinx-copybutton; extra == 'docs'
55
- Requires-Dist: sphinx-design; extra == 'docs'
56
- Requires-Dist: sphinx>=7; extra == 'docs'
57
- Requires-Dist: sphinxcontrib-bibtex; extra == 'docs'
58
- Requires-Dist: sphinxext-opengraph; extra == 'docs'
59
- Description-Content-Type: text/markdown
60
-
61
- [![PyPI](https://img.shields.io/pypi/v/smftools.svg)](https://pypi.org/project/smftools)
62
- [![Docs](https://readthedocs.org/projects/smftools/badge/?version=latest)](https://smftools.readthedocs.io/en/latest/?badge=latest)
63
-
64
- # smftools
65
- A Python tool for processing raw sequencing data derived from single molecule footprinting experiments into [anndata](https://anndata.readthedocs.io/en/latest/) objects. Additional functionality for preprocessing, analysis, and visualization. Data structures are compatible with analyses developed within the [scverse](https://github.com/scverse) project, including [scanpy](https://github.com/scverse/scanpy) and [scvi-tools](https://github.com/scverse/scvi-tools).
66
-
67
- ## Philosophy
68
- While most genomic data structures handle low-coverage data (<100X) along large references, smftools prioritizes high-coverage data (scalable to at least 1 million X coverage) of a few genomic loci at a time. This enables efficient data storage, rapid data operations, hierarchical metadata handling, seamless integration with various machine-learning packages, and ease of visualization. Furthermore, functionality is modularized, enabling analysis sessions to be saved, reloaded, and easily shared with collaborators. Analyses are centered around the [anndata](https://anndata.readthedocs.io/en/latest/) object, and are heavily inspired by the work conducted within the single-cell genomics community.
69
-
70
- ## Dependencies
71
- The following CLI tools need to be installed and configured before using the informatics (smftools.inform) module of smftools:
72
- 1) [Dorado](https://github.com/nanoporetech/dorado) -> For standard/modified basecalling and alignment. Can be attained by downloading and configuring nanopore MinKnow software.
73
- 2) [Samtools](https://github.com/samtools/samtools) -> For working with SAM/BAM files
74
- 3) [Minimap2](https://github.com/lh3/minimap2) -> The aligner used by Dorado
75
- 4) [Modkit](https://github.com/nanoporetech/modkit) -> Extracting summary statistics and read level methylation calls from modified BAM files
76
-
77
- ## Modules
78
- - Informatics: Processes raw SMF data coming from Nanopore POD5 files, BAM files, or FASTQ files and organizes it into an AnnData object.
79
- - Preprocessing: Filters the AnnData object on read length, total methylation, and a variety of QC metrics.
80
- - Tools: Appends various analyses to the AnnData object.
81
- - Plotting: Visualization of analyses stored within the AnnData object.
82
-
83
- ## Announcements
84
- ### 09/09/24 - The pre-alpha phase package ([smftools-0.1.1](https://pypi.org/project/smftools/))
85
- The informatics module has been bumped to alpha-phase status. This module can deal with POD5s and unaligned BAMS from nanopore conversion and direct SMF experiments, as well as FASTQs from Illumina conversion SMF experiments. Primary output from this module is an AnnData object containing all relevant SMF data, which is compatible with all downstream smftools modules. The other modules are still in pre-alpha phase. Preprocessing, Tools, and Plotting modules should be promoted to alpha-phase within the next month or so.
86
-
87
- ### 08/30/24 - The pre-alpha phase package ([smftools-0.1.0](https://pypi.org/project/smftools/)) is installable through pypi!
88
- Currently, this package (smftools-0.1.0) is going through rapid improvement (dependency handling accross Linux and Mac OS, testing, documentation, debugging) and is still too early in development for standard use. The underlying functionality was originally developed as a collection of scripts for single molecule footprinting (SMF) experiments in our lab, but is being packaged/developed to facilitate the expansion of SMF to any lab that is interested in performing these styles of experiments/analyses. The alpha-phase package is expected to be available within a couple months, so stay tuned!
@@ -1,64 +0,0 @@
1
- smftools/__init__.py,sha256=zy4ckT7hKrLrlm6NiZQoupvc6oSN7wJsyOBCYdzukcQ,401
2
- smftools/_settings.py,sha256=RkGSrezDzZnh6AODA3o2LiSAINBxxxal5weq-2RZuM0,379
3
- smftools/_version.py,sha256=8oAxKUG747GUokmxjkrWejyJa5yPNEsoJDlXxoedxTw,21
4
- smftools/readwrite.py,sha256=DgVisHYdkjzaO7suPbUvluImeTc3jqGDlioNveHUxPc,4158
5
- smftools/datasets/F1_hybrid_NKG2A_enhander_promoter_GpC_conversion_SMF.h5ad.gz,sha256=q6wJtgFRDln0o20XNCx1qad3lwcdCoylqPN7wskTfI8,2926497
6
- smftools/datasets/__init__.py,sha256=xkSTlPuakVYVCuRurif9BceNBDt6bsngJvvjI8757QI,142
7
- smftools/datasets/dCas9_m6A_invitro_kinetics.h5ad.gz,sha256=niOcVHaYY7h3XyvwSkN-V_NMBaRt2vTP5TrJO0CwMCs,8385050
8
- smftools/datasets/datasets.py,sha256=FZ6e7SU6Zt1-gf3az71AgQLpyNvAEiOb5ctbwyP3XSU,553
9
- smftools/informatics/__init__.py,sha256=Aa-QNdfrpZrTPq8xqP4NBA7bb1VLLYaduH-US6pKNA4,280
10
- smftools/informatics/bam_conversion.py,sha256=mLjIVx-07sa3TDQ_qhPKoAfTjqThvyh-MAq8BDtatHg,2719
11
- smftools/informatics/bam_direct.py,sha256=2Y7C8N9QrgJyXqP3WEVZ7fi5qU-iNj_KN0ve-xvXD-U,2964
12
- smftools/informatics/basecalls_to_adata.py,sha256=krnf5fdOuXZmnwW-y_eDC5hEjODUUyMEoY5z6R-65UI,1905
13
- smftools/informatics/fast5_to_pod5.py,sha256=i2sPWME6p6jttG6WbcQFCzI22WVpwcXgZBG9RXqIlzU,717
14
- smftools/informatics/pod5_conversion.py,sha256=x_d55jk2vX5hiSWH6-W4oWdmI-uTce8iRhhBqSzYS_I,3073
15
- smftools/informatics/pod5_direct.py,sha256=aozZQdeYA5AFAEnku6un5gtGtZEdekk-6W7e7K_pBLw,3383
16
- smftools/informatics/pod5_to_adata.py,sha256=1lSr32fAKXkxU5nV3C0UBDW6i2FnSbD_aqlKG4Yn9RU,1763
17
- smftools/informatics/readwrite.py,sha256=DgVisHYdkjzaO7suPbUvluImeTc3jqGDlioNveHUxPc,4158
18
- smftools/informatics/subsample_pod5.py,sha256=6g8fV2K1YJFEDVHs_bTJDuOSsIkMWpw5Lvk9uittW9k,2188
19
- smftools/informatics/helpers/LoadExperimentConfig.py,sha256=gsWGoa9cydwY4Kd-hTXF2gtmxc8glRRD2V1JB88e9js,2822
20
- smftools/informatics/helpers/__init__.py,sha256=luoFmS4B3XnG68XVziqtmPEZy-X3228LEZzQaHX84Cc,1487
21
- smftools/informatics/helpers/align_and_sort_BAM.py,sha256=835lNQafsdY-PMQZAv3HgLcXNkeduZA4HUewXgGV87M,2447
22
- smftools/informatics/helpers/binarize_converted_base_identities.py,sha256=kAYtPwMY5-gUL2muXOcbSiowQ2Mkls90GXXFaCKG5Pk,1773
23
- smftools/informatics/helpers/canoncall.py,sha256=XaAM_Vd_Q3SQIIlb10-7z5Zo-YADnIcC4eMQjZt1H-E,961
24
- smftools/informatics/helpers/converted_BAM_to_adata.py,sha256=cD-4gnJqCULGexedtETo-NGz-uqq16HwK_9zgCM7w_8,9769
25
- smftools/informatics/helpers/count_aligned_reads.py,sha256=Jttzh94T2uALC-dCvjlq58tupj5VxuKj3j301ICj7eI,2058
26
- smftools/informatics/helpers/extract_base_identities.py,sha256=-iBSEgnsp3EESSOupGcDGObGWykxucD5YC7aW_pEJ2k,2733
27
- smftools/informatics/helpers/extract_mods.py,sha256=UBFjXDKz_A6ivjcocYT1_pKjvygY2Fdg0RjQmMS8UuA,2269
28
- smftools/informatics/helpers/find_conversion_sites.py,sha256=52RvFQkIBly-CqToFe2zaKkpsUSixe8rHxZfL32EygA,3570
29
- smftools/informatics/helpers/generate_converted_FASTA.py,sha256=fKmjpvBQF8fHljzcGtqUgMwdWIfnmwnhI-Y3A59_qDk,3939
30
- smftools/informatics/helpers/get_native_references.py,sha256=fRuyEm9UJkfd5DwHmFb1bxEtNvtSI1_BxGRmrCymGkw,981
31
- smftools/informatics/helpers/make_dirs.py,sha256=lWHXpwC76MFM5sSme9i_WeYUaxutzybendokhny03ds,537
32
- smftools/informatics/helpers/make_modbed.py,sha256=cOQ97gPfRiCcw_fqboxousXIiOYjp78IFYLbu749U1Y,939
33
- smftools/informatics/helpers/modQC.py,sha256=LeOBObG8gAVVdgESIMceYhd5AW1gfN7ABo91OQtOzTM,1041
34
- smftools/informatics/helpers/modcall.py,sha256=ZcBl3QK622gG1IFy6agOWVADvsjr7WZIcglhSmYl02E,1133
35
- smftools/informatics/helpers/modkit_extract_to_adata.py,sha256=KDnFSHH0PdaANH6uzcVpoii7s5u5gIfkSMgsQCiWORs,25279
36
- smftools/informatics/helpers/one_hot_encode.py,sha256=rNHAfLG8smkpSEDBYj73cVwCNNbFhVfMW4SB2ijydMk,577
37
- smftools/informatics/helpers/separate_bam_by_bc.py,sha256=mGiB6y4xs_WATf-VDyVz4tg6BG3I6ZzYcpuEjeA1oVo,1580
38
- smftools/informatics/helpers/split_and_index_BAM.py,sha256=p2qRV-bOXj1P0JcvBqmK3ihRyM7_bVnKCi3bog_2kR8,1143
39
- smftools/informatics/helpers/archived/informatics.py,sha256=gKb2ZJ_LcAeEXuQqn9e-QDF_sS4tMpMTr2vZlqa7n54,14572
40
- smftools/informatics/helpers/archived/load_adata.py,sha256=DhvYYqO9VLsZqhL1WjN9sd-e3fgvdXGlgTP18z1h0L0,33654
41
- smftools/plotting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
- smftools/preprocessing/__init__.py,sha256=PoemcyddUsfRPtJ7Ggr5G69nTXIQCFmz6lctpoEXYUA,1153
43
- smftools/preprocessing/append_C_context.py,sha256=-4P3Dkq60QW57AB9NR6iRjmz-Dl27s2V-HqWWOTB21M,2485
44
- smftools/preprocessing/binarize_on_Youden.py,sha256=slkkt56DZ1FZWy8Un5mNJEZ49JlPnPKow2zU4GoHEr8,2303
45
- smftools/preprocessing/binary_layers_to_ohe.py,sha256=931eHuVda6pMZTvC7jVTKkY2a_KQWpSfgi-nkA5NmaI,1238
46
- smftools/preprocessing/calculate_complexity.py,sha256=nDdEzHaN7KBN7QfqaFgQoTBT_6cpOa44l8IDHwa76fs,3224
47
- smftools/preprocessing/calculate_converted_read_methylation_stats.py,sha256=FCDVLOxT8iHTBeG6EbEFt_S_mIQvYosEAb9-hbc8fhA,2720
48
- smftools/preprocessing/calculate_coverage.py,sha256=46-U7YW98uL3pEVnfhBueGZOnNr3a3rWr3mT7YToglM,2019
49
- smftools/preprocessing/calculate_pairwise_hamming_distances.py,sha256=EIcIOOw0tpECR9hfZeMNlq0J_L2-J-Jp5-RzVkoGO7o,951
50
- smftools/preprocessing/calculate_position_Youden.py,sha256=mfQ6nFfUaEaKg_icyHA1zZlhh0wHjpLE56BZDXOdP_4,6364
51
- smftools/preprocessing/calculate_read_length_stats.py,sha256=wIz-EtOz7S_RDSqAAv7SoiTIQq9Ovkfs4dE4BdHXyNo,1793
52
- smftools/preprocessing/clean_NaN.py,sha256=nnm_zCEGilgDGvxxPBP81sYHJ9LrZ2MVvI1ydf0iPxk,1160
53
- smftools/preprocessing/filter_converted_reads_on_methylation.py,sha256=3BwBWyPnVuOH46J2mgafRXcNzWYRxc4sr7nKTInLyfU,1242
54
- smftools/preprocessing/filter_reads_on_length.py,sha256=LfGz0h3Xf8XUxv3ifXLbfeAOzSYYZVUJcHy73ykUu3A,2135
55
- smftools/preprocessing/invert_adata.py,sha256=6ab7WjUjGUYd2uqXV93k1B4U6laxSwlWSgaR0Lg7apc,655
56
- smftools/preprocessing/mark_duplicates.py,sha256=nKbdUEikJFekWuJ259J4XBPE5elcp44VkyY14jLLZEk,7167
57
- smftools/preprocessing/min_non_diagonal.py,sha256=hx1asW8CEmLaIroZISW8EcAf_RnBEC_nofGD8QG0b1E,711
58
- smftools/preprocessing/remove_duplicates.py,sha256=W0QQ5LLmIGj8OTfXuiTLJjFhOjv5r-TTipTupq-nf50,432
59
- smftools/preprocessing/archives/preprocessing.py,sha256=4mLT09A7vwRZ78FHmuwtv38mH9TQ9qrZc_WjHRhhkIw,34379
60
- smftools/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
- smftools-0.1.1.dist-info/METADATA,sha256=8iWTWzl1ZIZvpYRbp6ov1NizrUJMwBbWNCs31QV3LjY,6262
62
- smftools-0.1.1.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
63
- smftools-0.1.1.dist-info/licenses/LICENSE,sha256=F8LwmL6vMPddaCt1z1S83Kh_OZv50alTlY7BvVx1RXw,1066
64
- smftools-0.1.1.dist-info/RECORD,,