-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
967 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
SET sequila.prefer_interval_join TO true; | ||
SET datafusion.execution.target_partitions=1; | ||
SET sequila.interval_join_algorithm TO coitrees; | ||
SET datafusion.optimizer.repartition_joins TO false; | ||
SET datafusion.execution.coalesce_batches TO false; | ||
|
||
CREATE EXTERNAL TABLE a | ||
STORED AS PARQUET | ||
LOCATION '/Users/mwiewior/research/git/openstack-bdg-runners/ansible/roles/gha_runner/files/databio/chainRn4/*parquet'; | ||
|
||
CREATE EXTERNAL TABLE b | ||
STORED AS PARQUET | ||
LOCATION '/Users/mwiewior/research/git/openstack-bdg-runners/ansible/roles/gha_runner/files/databio/fBrain-DS14718/*parquet'; | ||
|
||
select count(1) from a join b | ||
on a.contig = b.contig | ||
and a.pos_end > b.pos_start | ||
and a.pos_start < b.pos_end; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
SET sequila.prefer_interval_join TO true; | ||
SET datafusion.execution.target_partitions=1; | ||
SET sequila.interval_join_algorithm TO coitrees; | ||
SET datafusion.optimizer.repartition_joins TO false; | ||
SET datafusion.execution.coalesce_batches TO false; | ||
|
||
CREATE EXTERNAL TABLE a | ||
STORED AS PARQUET | ||
LOCATION '/Users/mwiewior/research/git/openstack-bdg-runners/ansible/roles/gha_runner/files/databio/chainRn4/*parquet'; | ||
|
||
CREATE EXTERNAL TABLE b | ||
STORED AS PARQUET | ||
LOCATION '/Users/mwiewior/research/git/openstack-bdg-runners/ansible/roles/gha_runner/files/databio/chainOrnAna1/*parquet'; | ||
|
||
select count(1) from a join b | ||
on a.contig = b.contig | ||
and a.pos_end > b.pos_start | ||
and a.pos_start < b.pos_end; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
SET sequila.prefer_interval_join TO true; | ||
SET datafusion.execution.target_partitions=1; | ||
SET sequila.interval_join_algorithm TO coitrees; | ||
SET datafusion.optimizer.repartition_joins TO false; | ||
SET datafusion.execution.coalesce_batches TO false; | ||
|
||
CREATE EXTERNAL TABLE a | ||
STORED AS PARQUET | ||
LOCATION '/Users/mwiewior/research/git/openstack-bdg-runners/ansible/roles/gha_runner/files/databio/chainRn4/*parquet'; | ||
|
||
CREATE EXTERNAL TABLE b | ||
STORED AS PARQUET | ||
LOCATION '/Users/mwiewior/research/git/openstack-bdg-runners/ansible/roles/gha_runner/files/databio/ex-rna/*parquet'; | ||
|
||
select count(1) from a join b | ||
on a.contig = b.contig | ||
and a.pos_end > b.pos_start | ||
and a.pos_start < b.pos_end; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
SET sequila.prefer_interval_join TO true; | ||
SET datafusion.execution.target_partitions=1; | ||
SET sequila.interval_join_algorithm TO coitrees; | ||
SET datafusion.optimizer.repartition_joins TO false; | ||
SET datafusion.execution.coalesce_batches TO false; | ||
|
||
CREATE EXTERNAL TABLE a | ||
STORED AS PARQUET | ||
LOCATION '/Users/mwiewior/research/git/openstack-bdg-runners/ansible/roles/gha_runner/files/databio/ex-anno/*parquet'; | ||
|
||
CREATE EXTERNAL TABLE b | ||
STORED AS PARQUET | ||
LOCATION '/Users/mwiewior/research/git/openstack-bdg-runners/ansible/roles/gha_runner/files/databio/ex-rna/*parquet'; | ||
|
||
select count(1) from a join b | ||
on a.contig = b.contig | ||
and a.pos_end > b.pos_start | ||
and a.pos_start < b.pos_end; |
Oops, something went wrong.