Ryangguk Kim

Results 44 comments of Ryangguk Kim

I see. Thanks for the explanation. Looking forward to the feature. We are not that familiar with WebGL yet, but if there is anything we can do, let me know.

Here is another example: conn = await aiosqlite.connect('db.sqlite') cursor = await conn.cursor() cursor.execute(q) # q is a SQL command which runs long. During the execution of q, ctrl-c stops the...

Thanks. We ended up with just making sure all db connections get to be closed. As long as there was no open connection, the program exited cleanly.

Thanks. The way the example code handles the CTRL-C would be perfect for my use case.

The package (open-cravat) is run on all three platforms (Windows, Mac, and Linux).

Thanks. We'll take a look.

Hi, this coming release of OpenCRAVAT will have export/import feature for filters. Thus, for example, you will be able to do the following. >oc run input.vcf ... >oc gui input.sqlite...

Mixing text files and sqlite files as input to `oc run` is currently not supported, but that is an interesting use case. We'll get back to you here with possible...

That is indeed strange. Can you let me know the result of the following commands? ``` For main_file, >sqlite3 main_file.sqlite sqlite>select count(*) from variant; sqlite>select count(*) from gene; sqlite>select count(*)...