Mike Lin

Results 150 comments of Mike Lin

Hello @sfchen, thank you for fastp; like previous commenters (here and #332), we're interested in enhancing the built-in complexity filter. We can work on the implementation. Would you be open...

@jkbonfield Thanks, great feedback and great point about the last line. I worry that `if (!f_src->at_eof)` does not distinguish the two cases though. `kgetline()` consumes any newline and [trims it...

1. I've factored a `kgetline3()` out of `kgetline2()` where the former includes the line terminator, if present. `kgetline2()` now just calls this `kgetline3()`, then trims the terminator as before. 2....

Thanks @jkbonfield, I've not had a chance to revisit this in some time, but really appreciate your looking into it

@jkbonfield thanks, I reset my branch to yours

First pasting for reference the spec language: > It is valid to import the same Struct into the global namespace multiple times via different paths; however, if two Structs with...

(To be clear, I agree the spec is ambiguous on some of these points -- I can describe what miniwdl does now, but I don't claim that's normative and I...

I think it remains ambiguous whether two struct types with distinct declarations but identical members are compatible or not, ie ```wdl struct A { Int x String s } struct...

@jdidion what do you think of the [Discussions](https://github.com/openwdl/wdl/discussions) forum for this & your other? (I just added mine there for good measure :)

miniwdl has a command-line flag `--no-quant-check` that relaxes some of the static checks and would probably make this pass validation. However, I'm not certain whether it would then exhibit the...