You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In pipeline.yaml for refmap, specifying query_celltype is optional and will default to celltype if None, however this line doesn't take into account that query_celltype may be unspecified, so the script fails if it is not specified.
hey @wlason,
this line refers to the concatenated reference and query datasets, after the celltype prediction using the trained scanvi model. in the documentation
we specify that the query has to contain a column with the same name as the label (celltype in this case) you need to transfer from the reference, filled with "unknown". (these are standard scvi-tools rules for scanvi, not related to panpipes)
can you tell me if you found an issue with these instructions? thank you for reporting!
In
pipeline.yaml
for refmap, specifyingquery_celltype
is optional and will default tocelltype
ifNone
, however this line doesn't take into account thatquery_celltype
may be unspecified, so the script fails if it is not specified.panpipes/panpipes/python_scripts/refmap_scvitools.py
Line 327 in 0cb7826
If
query_celltype
is None, we need to create a new column in obs calledcelltype
first, or skip this if-statement.The text was updated successfully, but these errors were encountered: