python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Error running gatk HaplotypeCaller with allele specific annotations
I've got HaplotypeCaller working nicely in standard mode, like so:
# Run haplotypcaller
gatk --java-options "-Xmx4g" HaplotypeCaller \
--intervals "$INTERVALS" \
-R &qu...
Mike
Votes: 0
Answers: 1
unique_ptr inside a variant. Is it safe to use?
Id like to ask, is safe having a variant like this?
struct A
{
unique_ptr<T> anything;
};
struct B
{
int x = 0;
int y = 0;
};
variant<A, B> myVar;
myVar = ... A object;
myVar ...
Juan JuezSarmiento
Votes: 0
Answers: 1
std::variant template deduction when isolating containing type
I have been making a serializer today and am having trouble getting it to work with variants.
I have used this process before for various other things where I keep trimming off the type till I get to ...
Joe Mccane
Votes: 0
Answers: 1
VBA check if whole row of multidimensional variant is empty without loops
Is there a quick way to check whether a whole row of a variant is empty?
My multi-dimensional array / variant has n-rows and m-columns.
The only way I can think of is to loop through the columns (of a...

Michael Gierer
Votes: 0
Answers: 2