toulligqc 2.5.5__tar.gz → 2.5.7__tar.gz
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.
- {toulligqc-2.5.5 → toulligqc-2.5.7}/PKG-INFO +1 -1
- {toulligqc-2.5.5 → toulligqc-2.5.7}/setup.py +3 -2
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/fastq_extractor.py +4 -3
- toulligqc-2.5.7/toulligqc/version.py +1 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc.egg-info/PKG-INFO +1 -1
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc.egg-info/requires.txt +2 -1
- toulligqc-2.5.5/toulligqc/version.py +0 -1
- {toulligqc-2.5.5 → toulligqc-2.5.7}/AUTHORS +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/LICENSE-CeCILL.txt +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/LICENSE.txt +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/MANIFEST.in +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/README.md +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/setup.cfg +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/test/test_sequencing_summary_extractor.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/__init__.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/bam_extractor.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/common.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/common_statistics.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/configuration.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/extractor_common.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/fast5_extractor.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/fastq_bam_common.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/html_report_generator.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/plotly_graph_common.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/plotly_graph_generator.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/plotly_graph_onedsquare_generator.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/report_data_file_generator.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/resources/plotly-latest.min.js +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/resources/toulligqc.css +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/resources/toulligqc.png +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/sequencing_summary_extractor.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/sequencing_summary_onedsquare_extractor.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/sequencing_telemetry_extractor.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/toulligqc.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc/toulligqc_info_extractor.py +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc.egg-info/SOURCES.txt +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc.egg-info/dependency_links.txt +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc.egg-info/entry_points.txt +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc.egg-info/not-zip-safe +0 -0
- {toulligqc-2.5.5 → toulligqc-2.5.7}/toulligqc.egg-info/top_level.txt +0 -0
|
@@ -46,9 +46,10 @@ setup(
|
|
|
46
46
|
include_package_data=True,
|
|
47
47
|
|
|
48
48
|
python_requires='>=3.11.0',
|
|
49
|
-
install_requires=['matplotlib>=3.6.3', 'plotly
|
|
49
|
+
install_requires=['matplotlib>=3.6.3', 'plotly==4.5.0', 'h5py>=3.7.0',
|
|
50
50
|
'pandas>=1.5.3', 'numpy>=1.24.2', 'scipy>=1.10.1',
|
|
51
|
-
'scikit-learn>=1.2.1', 'tqdm>=4.64.1', 'pysam>=0.21.0'
|
|
51
|
+
'scikit-learn>=1.2.1', 'tqdm>=4.64.1', 'pysam>=0.21.0',
|
|
52
|
+
'ezcharts==0.7.6'],
|
|
52
53
|
|
|
53
54
|
entry_points={
|
|
54
55
|
'console_scripts': [
|
|
@@ -283,9 +283,10 @@ class fastqExtractor:
|
|
|
283
283
|
fastq_lines.append((len(read[1]), qscore, passes_filtering, start_time, ch))
|
|
284
284
|
else:
|
|
285
285
|
for read in read_batch:
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
286
|
+
if len(read)>0:
|
|
287
|
+
qscore = avg_qual(read)
|
|
288
|
+
passes_filtering = True if qscore > self.threshold_Qscore else False
|
|
289
|
+
fastq_lines.append((len(read), qscore, passes_filtering))
|
|
289
290
|
return fastq_lines
|
|
290
291
|
|
|
291
292
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '2.5.7'
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '2.5.5'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|