We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following error occurred when rendering Affymetrix.qmd for one dataset (but same issue could potentially arise in Agile1CMP.qmd too):
Affymetrix.qmd
Agile1CMP.qmd
Error in `dplyr::bind_rows()`: ! Can't combine `..1$ensembl_gene_id` <logical> and `..2$ensembl_gene_id` <character>.
Error occurs when getBM() returns no rows, then ensembl_gene_id column is assumed to be logical type, causing the incompatibility in bind_rows().
getBM()
ensembl_gene_id
bind_rows()
GeneLab_Data_Processing/Microarray/Affymetrix/Workflow_Documentation/NF_MAAffymetrix/workflow_code/bin/Affymetrix.qmd
Lines 636 to 652 in 90d6bb5
Check if chunk_results contains any rows before binding to df_mapping in Affymetrix.qmd / Agile1CMP.qmd:
chunk_results
df_mapping
if (nrow(chunk_results) > 0) { df_mapping <- df_mapping %>% dplyr::bind_rows(chunk_results) }
The text was updated successfully, but these errors were encountered:
NF_MAAffymetrix: address nasa#96
0f1f8c6
NF_MAAgilent1ch: address nasa#96
2bbe8e9
No branches or pull requests
Description
The following error occurred when rendering
Affymetrix.qmd
for one dataset (but same issue could potentially arise inAgile1CMP.qmd
too):Error occurs when
getBM()
returns no rows, thenensembl_gene_id
column is assumed to be logical type, causing the incompatibility inbind_rows()
.GeneLab_Data_Processing/Microarray/Affymetrix/Workflow_Documentation/NF_MAAffymetrix/workflow_code/bin/Affymetrix.qmd
Lines 636 to 652 in 90d6bb5
Solution
Check if
chunk_results
contains any rows before binding todf_mapping
inAffymetrix.qmd
/Agile1CMP.qmd
:The text was updated successfully, but these errors were encountered: