Skip to content

Commit ba0a7ed

Browse files
committed
removed pf_clusters from bclconvert sequencing metrics returned
1 parent 1e18686 commit ba0a7ed

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

checkQC/parsers/illumina.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ def from_bclconvert(cls, runfolder_path, parser_config):
3636
sequencing_metrics = {
3737
lane + 1: {
3838
"total_cluster_pf": summary.at(0).at(lane).reads_pf(),
39-
"pf_clusters": summary.at(0).at(lane).cluster_count_pf().mean(),
4039
"raw_clusters": summary.at(0).at(lane).cluster_count().mean(),
4140
"raw_density":summary.at(0).at(lane).density().mean(),
4241
"pf_density":summary.at(0).at(lane).density_pf().mean(),

tests/test_qc_data.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ def bclconvert_runfolder():
6666
"expected_sequencing_metrics": {
6767
1: {
6868
"total_cluster_pf": 532_464_327,
69-
"pf_clusters": 3_413_232.5,
7069
"raw_clusters": 4_091_904.0,
7170
"raw_density": 2_961_270.5,
7271
"pf_density": 2_470_118.25,
@@ -138,7 +137,6 @@ def bclconvert_runfolder():
138137
},
139138
2: {
140139
"total_cluster_pf": 530_917_565,
141-
"pf_clusters": 3_403_318.25,
142140
"raw_clusters": 4_091_904.0,
143141
"raw_density": 2_961_270.5,
144142
"pf_density": 2_462_942.5,

0 commit comments

Comments
 (0)