modified visium read function for reading tissue_positions.csv properly #1094
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Modified visium read function (
squidpy.read.visium) by correcting header argument ofpd.read_csvwhen reading tissue_positions.csv (Ref: #1089). Earlier, it was reading the tissue_positions.csv withpd.read_csv(file, header=1, ...)which was leading to the second row of the csv being read as header, which skipped one row of data. Changing to header=0 makes it function as expected. I don't know why it was header=1 in the first place (my guess is likely there used to be an extra line in tissue_positions.csv earlier, which is not there in the outputs now):Closes
Closes #1089