Replies: 3 comments 1 reply
-
You're right, I'd be curious to know more about what you need it for? I don't think I've ever had to compute an outer product and keep the remainder, but I'm always open to learning new things ... |
Beta Was this translation helpful? Give feedback.
-
Bear with me, since I usually develop proteomics things, but have an inherited genomics pipeline to work on and I don't fully understand everything in it. I have some VCF files (multiple per sample id) that have to be annotated with transcripts from GTF files (one per sample id). The catch is that sometimes a user doesn't have transcript info and it'd be nice if that can differ per sample.
My intuitive way to go about this would be:
I'm not sure if I'm thinking too convolutedly about this, and I've worked around it somehow, but this was what I was after. |
Beta Was this translation helpful? Give feedback.
-
Neat! Hadn't thought about |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm trying to get a join on two channels with non-unique keys, which by analogy with SQL I would say is a LEFT or RIGHT OUTER JOIN, so:
And I'd like the output to be:
I can't really figure out how to do this, since
.join(..., remainder: true)
seems to only match one record forX
, the second one coming out withnull
, and.combine(..., by: 0)
does match multiple but it does not haveremainder
, so theZ
record is lost.Am I doing this wrong? It sounds like a usecase too basic to not already somehow be possible.
Beta Was this translation helpful? Give feedback.
All reactions