-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
read10xVisium
tries to add outs
to my paths
#123
Comments
Hmm, I had thought our solution above balanced the two sets of use cases, but maybe not. Just so I am understanding correctly -- are you moving your I'm trying to think if there is an additional simple check we could do for this file setup. I would like to avoid requiring all users to add How do you do it in |
Maybe we can think about switching the |
Yes. The final name is arbitrary but will not end with
I doubt it. My approach is this: mv sample/outs/ somewhere_else/
rm -r sample/ Doesn't get much simpler or safer than that.
Yes.
Unfortunately, you've painted yourself into a corner with your initial decision to "make things easier for users". The only real way out is what I proposed in #76, which preserves back-compatibility for existing users via |
Discussed in #76, but someone must have introduced a regression somewhere down the line.
These lines of code:
SpatialExperiment/R/read10xVisium.R
Lines 114 to 115 in fbc2153
append
outs
to the paths if it doesn't already end withouts
.This causes problems for the following workflow:
outs
directory to some other location, because that's all we care about.outs
directory does not end withouts
, because we moved it.read10xVisium
breaks because it unnecessarily addsouts
to the end of the path.As I asked in #76, you should not be adding
outs
to the end of my paths.The text was updated successfully, but these errors were encountered: