sainsc.io.read_Xenium ===================== .. py:function:: sainsc.io.read_Xenium(filepath, *, binsize = 0.5, remove_features = XENIUM_CTRLS, n_threads = None) Read a Xenium transcripts file. :param filepath: Path to the Xenium transcripts file. Both, csv.gz and parquet files, are supported. :type filepath: os.PathLike or str :param binsize: Size of each bin in um. :type binsize: float, optional :param remove_features: List of regex patterns to filter the 'feature_name' column, :py:attr:`sainsc.io.XENIUM_CTRLS` by default. For Xenium v3 parquet files the data is automatically filtered with the 'is_gene' column, as well. :type remove_features: collections.abc.Collection[str], optional :param n_threads: Number of threads used for reading file and processing. If `None` or 0 this will default to the number of available CPUs. :type n_threads: int | None, optional :rtype: sainsc.LazyKDE