Skip to content

Commit

Permalink
Typo fixes, broken README link (#2235)
Browse files Browse the repository at this point in the history
* fix readme quick-start link

* docstr/typo fixes

* rm dupe dtype
  • Loading branch information
ryan-williams committed Mar 7, 2024
1 parent 7ecc161 commit 83bfd00
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ TileDB-SOMA provides interoperability with existing Python or R data structures:
channel `#cellxgene-census-users`.


## APIs Installation and Quick Start
## APIs Installation and Quick Start <a id="quick-start"></a>

* [Python installation and quick start](https://github.com/single-cell-data/TileDB-SOMA/wiki/Python-quick-start)
* [R installation and quick start](https://github.com/single-cell-data/TileDB-SOMA/wiki/R-quick-start)
Expand Down
4 changes: 2 additions & 2 deletions apis/python/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is enables building the libtiledbsoma external package as part of the
# This file enables building the libtiledbsoma external package as part of the
# tiledbsoma module install process.
#
# Local non-editable install:
Expand Down Expand Up @@ -62,7 +62,7 @@

if tiledbsoma_dir is not None and tiledb_dir is None:
raise ValueError(
"If TILEDBSOMA_PATH is set, then TILEDB_PATH must be "
"If TILEDBSOMA_PATH is set, then TILEDB_PATH must "
"also be set. TILEDB_PATH must be set to the location of "
"the TileDB shared object library linked to the "
"TileDB-SOMA shared object library"
Expand Down
2 changes: 1 addition & 1 deletion apis/python/src/tiledbsoma/_common_nd_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def create(
shape:
The maximum capacity of each dimension, including room
for any intended future appends, as a sequence. E.g. ``(100, 10)``.
All lengths must be in the postive int64 range, or ``None``. It's
All lengths must be in the positive int64 range, or ``None``. It's
necessary to say ``shape=(None, None)`` or ``shape=(None, None,
None)``, as the sequence length determines the number of dimensions
N in the N-dimensional array.
Expand Down
4 changes: 2 additions & 2 deletions apis/python/src/tiledbsoma/_sparse_nd_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ def read(
Args:
coords:
A per-dimension tuple of scalar, slice, sequence of scalar or
`Arrow IntegerArray <https://arrow.apache.org/docs/python/generated/pyarrow.IntegerArray.html>`_
A per-dimension ``Sequence`` of scalar, slice, sequence of scalar or
`Arrow IntegerArray <https://arrow.apache.org/docs/python/generated/pyarrow.IntegerArray.html>` values
defining the region to read.
Returns:
Expand Down
1 change: 0 additions & 1 deletion apis/python/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
pa.int8(),
pa.int16(),
pa.int32(),
pa.int16(),
pa.uint8(),
pa.uint16(),
pa.uint32(),
Expand Down

0 comments on commit 83bfd00

Please sign in to comment.