Replies: 1 comment
-
The reason why I need this, is that I have a csv file with samples and I want to transverse a directory and get the files per sample. For example:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have the following process:
which is supposed to read a folder, and return the files that match to the output. This works locally but not in the google cloud, as the symbolic link ends up dangling. I feel this is a bug, or at least there is lack of documentation explaining this edge case.
followLinks
is by default true, therefore one would expect to get the files and not the links to the next process, particularly not dangling ones... I have tried also other ways such as this:which fails as the files is null (!!!!)
or even by transforming the findings into actual file names (prepending the gs bucket directory and then trying to convert that to links), like here:
which again fails, returning that the string (which is not a string but a list inside the list) cannot be considered as path.
I am pretty desperate and I feel I have depleted all of my options. Please help.
Beta Was this translation helpful? Give feedback.
All reactions