diff --git a/docs/cellxgene_census_docsite_landing.md b/docs/cellxgene_census_docsite_landing.md index b5f08f7df..108280578 100644 --- a/docs/cellxgene_census_docsite_landing.md +++ b/docs/cellxgene_census_docsite_landing.md @@ -10,6 +10,8 @@ Get started: - [Census data and schema](cellxgene_census_docsite_schema.md) - [Python tutorials](examples.rst) - *Coming soon: R tutorials.* +- [Github repository](https://github.com/chanzuckerberg/cellxgene-census) + ![image](cellxgene_census_docsite_workflow.svg) diff --git a/docs/cellxgene_census_docsite_quick_start.md b/docs/cellxgene_census_docsite_quick_start.md index c33776793..d140373e8 100644 --- a/docs/cellxgene_census_docsite_quick_start.md +++ b/docs/cellxgene_census_docsite_quick_start.md @@ -109,9 +109,10 @@ with cellxgene_census.open_soma() as census: human = census["census_data"]["homo_sapiens"] query = human.axis_query( - measurement_name = "RNA", - obs_query = tiledbsoma.AxisQuery( - value_filter = "tissue == 'brain' and sex == 'male'" + measurement_name = "RNA", + obs_query = tiledbsoma.AxisQuery( + value_filter = "tissue == 'brain' and sex == 'male'" + ) ) # Continued below