Peer Review History
| Original SubmissionNovember 21, 2023 |
|---|
|
Dear Dr. Qiu, Thank you very much for submitting your manuscript "Hierarchical Marker Genes Selection in scRNA-seq" for consideration at PLOS Computational Biology. As with all papers reviewed by the journal, your manuscript was reviewed by members of the editorial board and by several independent reviewers. In light of the reviews (below this email), we would like to invite the resubmission of a significantly-revised version that takes into account the reviewers' comments. We cannot make any decision about publication until we have seen the revised manuscript and your response to the reviewers' comments. Your revised manuscript is also likely to be sent to reviewers for further evaluation. When you are ready to resubmit, please upload the following: [1] A letter containing a detailed list of your responses to the review comments and a description of the changes you have made in the manuscript. Please note while forming your response, if your article is accepted, you may have the opportunity to make the peer review history publicly available. The record will include editor decision letters (with reviews) and your responses to reviewer comments. If eligible, we will contact you to opt in or out. [2] Two versions of the revised manuscript: one with either highlights or tracked changes denoting where the text has been changed; the other a clean version (uploaded as the manuscript file). Important additional instructions are given below your reviewer comments. Please prepare and submit your revised manuscript within 60 days. If you anticipate any delay, please let us know the expected resubmission date by replying to this email. Please note that revised manuscripts received after the 60-day due date may require evaluation and peer review similar to newly submitted manuscripts. Thank you again for your submission. We hope that our editorial process has been constructive so far, and we welcome your feedback at any time. Please don't hesitate to contact us if you have any questions or comments. Sincerely, Shihua Zhang Academic Editor PLOS Computational Biology Ilya Ioshikhes Section Editor PLOS Computational Biology *********************** Reviewer's Responses to Questions Comments to the Authors: Please note here if the review is uploaded as an attachment. Reviewer #1: The paper describes a marker selection method that is very relevant to new computational methods in single-cell analysis. Single-cell analysis is moving towards higher granularity of cell types as seen with advances in clonality, sub-clustering, and multi-omics integration. Clonality and genomics data lends itself to creation of tree-like classifications schemes. The method suggested here could be important to define high-resolution differences in clusters, because at a high resolution, the markers that define cell states will differ from markers found at a lower resolution. In addition to suggesting highly specific markers for each cluster in a single cell dataset, the algorithm builds a tree based on these markers, which could be interesting to compare to trees based on clonality, somatic mutations, or other methods for calculating transcriptional similarity. The paper itself is written very clearly and the scope is well defined. The abstract and summary is concise and accurate, and the idea behind the paper is broadly useful to single-cell genomics. The method is findable on GitHub and integrated seamlessly with a commonly used framework, Seurat, making it accessible to a broader audience. It is run mostly in R, making it useful for some single-cell analysts, but there are some issues with the code and its scalability. Because of its relevance to recent technological advances and its clarity, it will be useful to the field for discussion and code. I recommend publishing the paper after code revisions. There are two major issues with the paper. 1. The method of determining the tree based on Wilcoxon tests between all possible combinations of clusters is computationally demanding and slow. In its current state, it is inappropriate for larger datasets. In the code, a Wilcoxon test is run for >1000 cluster comparisons (because many 1 vs. all tests are run) in a dataset with only 9 clusters, making it possible to run for the test case but unscalable to larger numbers of clusters. Theoretically, testing every possible combination of clusters helps build the best possible tree based on markers by using a statistical test for scoring where breaking points should be, providing a highly accurate distance metric between clusters. However, a very similar tree could be found using more computationally frugal methods, for example by calculating distances between centroids of clusters in some transcriptomic space such as PCA space or in the full gene space. There have been methods suggested to calculate these hierarchies that were not mentioned in the paper, namely TooManyCells There is another package that calculates and visualizes a tree for omics data, TooManyCells https://github.com/GregorySchwartz/too-many-cells which creates a tree using “an efficient matrix-free divisive hierarchical spectral clustering”. I would suggest that these Wilcoxon tests and scores be calculated only once the tree (or an assembly of trees using different methods or from a bootstrap test) is decided, which would reduce the number of Wilcoxon tests required to only N-1 tests, where N is the number of clusters, or close to that number if an assembly of trees are compared to each other. The heatmap and markers could then be decided using the method described here. The method appears to be very useful for scoring markers across a tree of cell-types. It seems important to include the method for building the tree based on Wilcoxon tests as it is currently written, because it is a relevant method for cell type hierarchy calculation and applicable to the reasoning behind the method. But because of the scalability issue, it is important to make the method interoperable with cell-type/cluster trees other than the one calculated directly by the method. As a starting point I recommend use of the package “data.tree” or “pvclust” (or hclust) to operate on a tree object https://ggraph.data-imaginist.com/. For visualization, I have written some methods for extending the Seurat object to include a tree ggraph object - https://github.com/jo-m-lab/ARBOL. Recent papers on clonality methods use the ggraph package for visualization, so it could be very helpful to somehow integrate this method of marker annotation with ggraph. The TooManyCells mentioned earlier also provides extensive methods for visualizing the tree. 2. The second major issue is that the code provided to run the method is largely undocumented. There is a set of instructions on the GitHub page describing which order to run the code so users can replicate the paper, and I was able to do so, but it is confusing to read the code to check each piece. It also wasn’t clear how the user should input the hierarchy calculated in R into the python notebook. I was able to run the scripts using the instructions on the GitHub page, but it is important for future users that the code is annotated with comments, so that each function can be understood in case of errors and so that it can reach a broader audience. 3. Lastly, there is one minor issue: the code requires an older version of Seurat (4.3.0) and does not run with the newest Seurat 5.0. Seurat v5 has caused similar problems for many extension packages, so while I don’t think it’s necessary to update to fit the new package, this should be kept in mind when thinking about accessibility of the method. Previous methods for calculating markers highly unique to clusters only use heuristics or basic differential expression to decide how unique the markers are. The scoring method here explicitly calculates markers in a hierarchy of cell types and provides a new scoring method, which could be useful for existing cell-type hierarchy methods. With better documentation, scalability, and interoperability with existing tree objects, the article would be a good read for those in the field. Reviewer #2: The manuscript is motivated by the non-specified identification of the current one-vs-all strategy of the cell type marker detection on single cell dataset. Given existing cell type annotation, the presented algorithm adopts a hierarchical design by combining the one-vs-all strategy (FinaMarkers in Seurat) with the heatmap of resulting gene markers. The authors defined a scoring function to maximize the sum of the diagonal value and minimize the off-diagonal values in the heatmap. Finally, the author compares the method with traditional Seurat FindMarkers, the scGeneFit (both the flat and hierarchical version). My major concern is that it is less practical to begin with identified cell types when analyzing a single cell dataset. A more common scenario in this case would start from a set of cells to be annotated, then use clustering to get potential cell types, and ultimately use the cluster markers and existing domain knowledge to annotate the cluster with corresponding cell types. I wonder if this hierarchical marker gene selection method would guide the cell type identification process by enhancing the clustering quality. By factoring the clustering step with the better identified cell markers can really help the researchers with the annotation task. By looking at Figure 4, the baseline methods with Seurat perform relatively well. I wonder if the authors can compare the actual gene list from both baseline and the proposed method and see if they have overlapped genes. If there are genes specific to the proposed method, how would they be helpful to biological discoveries. I really like the results for automated cell type mapping which demonstrates a generic usage for constructing a universal classifier for existing cell types on a reference dataset. Again, the ability to transferring the classifier from one dataset to another needs to be further investigated. Minor comments: It would be helpful if the authors can draw a workflow diagram illustrating the algorithm. The heatmap and the hierarchical tree is hard to read due to the font size. Apply the same color for all heatmaps in the same figure? It is a little counter-intuitive that the hierarchical version of the scGeneFit always performs the worst among all algorithms. I wonder if the authors can elaborate on this observation. Can the authors comment on how to obtain the hyperparameter of k = 5. What is the threshold of z-score in finding the HVG? Reviewer #3: The manuscript entitled "Hierarchical Marker Genes Selection in scRNA-seq Analysis" presents a computational approach to identification of signature/marker genes for cell populations in scRNA-seq data by simultaneously modeling the cell type hierarchy and their marker genes. With a goal to minimize the off-diagonal expressions, the proposed approach was compared to baseline methods including scGeneFit and one-vs-all seurat method FindMarkers, showing that the proposed approach can improve the accuracy of classifying cell types and mapping cell populations between datasets, using three blood (PBMC) cell datasets. One advantage of the proposed approach is the assessment of the classification accuracy was done in a cell type-specific way. It clearly shows the differences across multiple methods on different datasets and cell types. The results look promising. There are still a few major issues that need to be clarified to convince the readers about the utility and robustness of the proposed approach, as listed in below: 1) The KNN classifier was trained in 70% of the cells. Were the marker genes identified using the same training set? The testing set needs to remain untouched by the competing marker gene identification methods. 2) There are many classifiers including random forest and SVM. Is there a reason that KNN was selected? In Abdelaal 2019 (Genome Biology), SVM was recommended as the classifier to compare different methods. 3) Besides classification accuracy, ROC curves or precision/recall curves can help show the tradeoff between sensitivity and specificity and compare across competing methods. 4) When there is no cell type hierarchy, the proposed approach seems similar to the one-vs-all approach. This actually shows that the one-vs-all approach is not bad at all. I would suggest to rephrase the sentence that the one-vs-all approach is a special case of the proposed approach. In theory, the one-vs-all approach can be applied to every pair/layer of the cell type hierarchy, if available, to identify the layer-specific marker genes, which is a more fair comparison because in the current setting the cell type hierarchy is not utilized by the one-vs-all approach. The two approaches are just different strategies. 5) The message from Figure 5 UMAP visualization is unclear, especially when compared with using all genes. Consider using a quantitative approach. 6) Describe the data analysis process and (justify) parameters selection used in the assessment/comparison of the competing methods. For example, in the proposed scoring function, is there a way to refine or decide the value for the K (weight) before running the model on the testing set? Is the selection dependent on the abundance of cell populations, number of cells, and number of genes in the dataset? The 3 PBMC datasets seem to be similar in terms of these numbers so it is unclear whether the proposed approach will be robust for different datasets. If the K needs to be selected in an ad hoc way for a new dataset, it will be helpful to include assessment from multiple K values to show the variance. 7) Figure 1 has two sets of a-c. The second set should be d-f. Also the text are too small to see. 8) There are many other marker gene selection methods for scRNA-seq data analysis (SMaSH, COMET, RankCorr, scGeneFit, Seurat, SC3, SCMarker, and scTIM). The related work section needs to be re-organized accordingly to highlight the true innovation of the proposed approach. ********** Have the authors made all data and (if applicable) computational code underlying the findings in their manuscript fully available? The PLOS Data policy requires authors to make all data and code underlying the findings described in their manuscript fully available without restriction, with rare exception (please refer to the Data Availability Statement in the manuscript PDF file). The data and code should be provided as part of the manuscript or its supporting information, or deposited to a public repository. For example, in addition to summary statistics, the data points behind means, medians and variance measures should be available. If there are restrictions on publicly sharing data or code —e.g. participant privacy or use of data from a third party—those must be specified. Reviewer #1: Yes Reviewer #2: Yes Reviewer #3: Yes ********** PLOS authors have the option to publish the peer review history of their article (what does this mean?). If published, this will include your full peer review and any attached files. If you choose “no”, your identity will remain anonymous but your review may still be made public. Do you want your identity to be public for this peer review? For information about this choice, including consent withdrawal, please see our Privacy Policy. Reviewer #1: Yes: Kyle Kimler Reviewer #2: No Reviewer #3: No Figure Files: While revising your submission, please upload your figure files to the Preflight Analysis and Conversion Engine (PACE) digital diagnostic tool, https://pacev2.apexcovantage.com. PACE helps ensure that figures meet PLOS requirements. To use PACE, you must first register as a user. Then, login and navigate to the UPLOAD tab, where you will find detailed instructions on how to use the tool. If you encounter any issues or have any questions when using PACE, please email us at figures@plos.org. Data Requirements: Please note that, as a condition of publication, PLOS' data policy requires that you make available all data used to draw the conclusions outlined in your manuscript. Data must be deposited in an appropriate repository, included within the body of the manuscript, or uploaded as supporting information. This includes all numerical values that were used to generate graphs, histograms etc.. For an example in PLOS Biology see here: http://www.plosbiology.org/article/info%3Adoi%2F10.1371%2Fjournal.pbio.1001908#s5. Reproducibility: To enhance the reproducibility of your results, we recommend that you deposit your laboratory protocols in protocols.io, where a protocol can be assigned its own identifier (DOI) such that it can be cited independently in the future. Additionally, PLOS ONE offers an option to publish peer-reviewed clinical study protocols. Read more information on sharing protocols at https://plos.org/protocols?utm_medium=editorial-email&utm_source=authorletters&utm_campaign=protocols |
| Revision 1 |
|
Dear Dr. Qiu, Thank you very much for submitting your manuscript "Hierarchical Marker Genes Selection in scRNA-seq Analysis" for consideration at PLOS Computational Biology. As with all papers reviewed by the journal, your manuscript was reviewed by members of the editorial board and by several independent reviewers. The reviewers appreciated the attention to an important topic. Based on the reviews, we are likely to accept this manuscript for publication, providing that you modify the manuscript according to the review recommendations. Please prepare and submit your revised manuscript within 30 days. If you anticipate any delay, please let us know the expected resubmission date by replying to this email. When you are ready to resubmit, please upload the following: [1] A letter containing a detailed list of your responses to all review comments, and a description of the changes you have made in the manuscript. Please note while forming your response, if your article is accepted, you may have the opportunity to make the peer review history publicly available. The record will include editor decision letters (with reviews) and your responses to reviewer comments. If eligible, we will contact you to opt in or out [2] Two versions of the revised manuscript: one with either highlights or tracked changes denoting where the text has been changed; the other a clean version (uploaded as the manuscript file). Important additional instructions are given below your reviewer comments. Thank you again for your submission to our journal. We hope that our editorial process has been constructive so far, and we welcome your feedback at any time. Please don't hesitate to contact us if you have any questions or comments. Sincerely, Ilya Ioshikhes Section Editor PLOS Computational Biology Ilya Ioshikhes Section Editor PLOS Computational Biology *********************** A link appears below if there are any accompanying review attachments. If you believe any reviews to be missing, please contact ploscompbiol@plos.org immediately: Reviewer's Responses to Questions Comments to the Authors: Please note here if the review is uploaded as an attachment. Reviewer #1: The revised code and article seem widely useful for the computational scRNAseq analysis community. The revised code is much faster and easier to read, thank you! I hope to use this to annotate scRNAseq trees easier. Reviewer #2: I would like to thank the authors to response to my comments. However, I am still not sure that why the hierarchical version of the scGeneFit performed even worse than the flat version. Also, I wonder if the authors could integrate some of the responses into the manuscript, e.g. the comparison of the markers, the faster implementation, which would help the readers to better understand the merit of the method and have a complete view of the method. ********** Have the authors made all data and (if applicable) computational code underlying the findings in their manuscript fully available? The PLOS Data policy requires authors to make all data and code underlying the findings described in their manuscript fully available without restriction, with rare exception (please refer to the Data Availability Statement in the manuscript PDF file). The data and code should be provided as part of the manuscript or its supporting information, or deposited to a public repository. For example, in addition to summary statistics, the data points behind means, medians and variance measures should be available. If there are restrictions on publicly sharing data or code —e.g. participant privacy or use of data from a third party—those must be specified. Reviewer #1: Yes Reviewer #2: Yes ********** PLOS authors have the option to publish the peer review history of their article (what does this mean?). If published, this will include your full peer review and any attached files. If you choose “no”, your identity will remain anonymous but your review may still be made public. Do you want your identity to be public for this peer review? For information about this choice, including consent withdrawal, please see our Privacy Policy. Reviewer #1: Yes: Kyle Kimler Reviewer #2: No Figure Files: While revising your submission, please upload your figure files to the Preflight Analysis and Conversion Engine (PACE) digital diagnostic tool, https://pacev2.apexcovantage.com. PACE helps ensure that figures meet PLOS requirements. To use PACE, you must first register as a user. Then, login and navigate to the UPLOAD tab, where you will find detailed instructions on how to use the tool. If you encounter any issues or have any questions when using PACE, please email us at figures@plos.org. Data Requirements: Please note that, as a condition of publication, PLOS' data policy requires that you make available all data used to draw the conclusions outlined in your manuscript. Data must be deposited in an appropriate repository, included within the body of the manuscript, or uploaded as supporting information. This includes all numerical values that were used to generate graphs, histograms etc.. For an example in PLOS Biology see here: http://www.plosbiology.org/article/info%3Adoi%2F10.1371%2Fjournal.pbio.1001908#s5. Reproducibility: To enhance the reproducibility of your results, we recommend that you deposit your laboratory protocols in protocols.io, where a protocol can be assigned its own identifier (DOI) such that it can be cited independently in the future. Additionally, PLOS ONE offers an option to publish peer-reviewed clinical study protocols. Read more information on sharing protocols at https://plos.org/protocols?utm_medium=editorial-email&utm_source=authorletters&utm_campaign=protocols References: Review your reference list to ensure that it is complete and correct. If you have cited papers that have been retracted, please include the rationale for doing so in the manuscript text, or remove these references and replace them with relevant current references. Any changes to the reference list should be mentioned in the rebuttal letter that accompanies your revised manuscript. If you need to cite a retracted article, indicate the article’s retracted status in the References list and also include a citation and full reference for the retraction notice. |
| Revision 2 |
|
Dear Dr. Qiu, We are pleased to inform you that your manuscript 'Hierarchical Marker Genes Selection in scRNA-seq Analysis' has been provisionally accepted for publication in PLOS Computational Biology. Before your manuscript can be formally accepted you will need to complete some formatting changes, which you will receive in a follow up email. A member of our team will be in touch with a set of requests. Please note that your manuscript will not be scheduled for publication until you have made the required changes, so a swift response is appreciated. IMPORTANT: The editorial review process is now complete. PLOS will only permit corrections to spelling, formatting or significant scientific errors from this point onwards. Requests for major changes, or any which affect the scientific understanding of your work, will cause delays to the publication date of your manuscript. Should you, your institution's press office or the journal office choose to press release your paper, you will automatically be opted out of early publication. We ask that you notify us now if you or your institution is planning to press release the article. All press must be co-ordinated with PLOS. Thank you again for supporting Open Access publishing; we are looking forward to publishing your work in PLOS Computational Biology. Best regards, Ilya Ioshikhes Section Editor PLOS Computational Biology Ilya Ioshikhes Section Editor PLOS Computational Biology Feilim Mac Gabhann Editor-in-Chief PLOS Computational Biology Jason Papin Editor-in-Chief PLOS Computational Biology *********************************************************** |
| Formally Accepted |
|
PCOMPBIOL-D-23-01888R2 Hierarchical Marker Genes Selection in scRNA-seq Analysis Dear Dr Qiu, I am pleased to inform you that your manuscript has been formally accepted for publication in PLOS Computational Biology. Your manuscript is now with our production department and you will be notified of the publication date in due course. The corresponding author will soon be receiving a typeset proof for review, to ensure errors have not been introduced during production. Please review the PDF proof of your manuscript carefully, as this is the last chance to correct any errors. Please note that major changes, or those which affect the scientific understanding of the work, will likely cause delays to the publication date of your manuscript. Soon after your final files are uploaded, unless you have opted out, the early version of your manuscript will be published online. The date of the early version will be your article's publication date. The final article will be published to the same URL, and all versions of the paper will be accessible to readers. Thank you again for supporting PLOS Computational Biology and open-access publishing. We are looking forward to publishing your work! With kind regards, Lilla Horvath PLOS Computational Biology | Carlyle House, Carlyle Road, Cambridge CB4 3DN | United Kingdom ploscompbiol@plos.org | Phone +44 (0) 1223-442824 | ploscompbiol.org | @PLOSCompBiol |
Open letter on the publication of peer review reports
PLOS recognizes the benefits of transparency in the peer review process. Therefore, we enable the publication of all of the content of peer review and author responses alongside final, published articles. Reviewers remain anonymous, unless they choose to reveal their names.
We encourage other journals to join us in this initiative. We hope that our action inspires the community, including researchers, research funders, and research institutions, to recognize the benefits of published peer review reports for all parts of the research system.
Learn more at ASAPbio .