home / WtMTA

introns

Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)

id
INTEGER (primary key), globally unique identifier for each intron
dinucleotide_pair
TEXT, terminal dinucleotide sequences of the intron
is_minor
INTEGER, indicates if the intron is a minor intron (1) or not (0)
score
REAL, score representing the probability (0-100%) of the intron being minor
length
INTEGER, length of the intron in base pairs
transcript_id
INTEGER (foreign key referencing transcripts(id)), parent transcript
ordinal_index
INTEGER, ordinal position of the intron within the transcript (e.g., 3 for the third intron)
start
INTEGER, start position of the intron in the genome
end
INTEGER, end position of the intron in the genome
taxonomy_id
INTEGER (foreign key referencing genomes(taxonomy_id)), NCBI taxonomy identifier for species
scored_motifs
TEXT, motifs scored for the intron
phase
INTEGER, phase of the intron in coding sequence (0, 1, or 2 or null for introns outside of coding sequence)
in_cds
INTEGER, indicates if the intron is within the coding sequence (1) or not (0; e.g., UTR introns)
relative_position
REAL, relative position of the intron within the transcript (as a percentage of coding length)

11 rows where transcript_id = 34091250

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
190849580 GT-AG 0 1.000000099473604e-05 152 rna-XM_013250951.1 34091250 1 1427592 1427743 Stomoxys calcitrans 35570 TTG|GTGAGTTTTG...TGTCCTTTTGCA/AAGACACTAATT...TTCAG|TTC 0 1 10.477
190849581 GT-AG 0 1.000000099473604e-05 159 rna-XM_013250951.1 34091250 2 1427303 1427461 Stomoxys calcitrans 35570 GAG|GTAAGAGAAT...TTTTTCTTGTTT/CTTTTTTTCTTT...TATAG|AGA 1 1 14.788
190849582 GT-AG 0 0.0006110164399489 3726 rna-XM_013250951.1 34091250 3 1423439 1427164 Stomoxys calcitrans 35570 AAG|GTATGTATAG...TGTGTCTTATAT/ATTGTTATCATT...TACAG|ACG 1 1 19.363
190849583 GT-AG 0 1.000000099473604e-05 8408 rna-XM_013250951.1 34091250 4 1414845 1423252 Stomoxys calcitrans 35570 CAG|GTGAGTAAAC...AATTTCTTGATG/GTTTTGTTTATG...TGCAG|GCG 1 1 25.531
190849584 GT-AG 0 1.8555995985769862e-05 19003 rna-XM_013250951.1 34091250 5 1395724 1414726 Stomoxys calcitrans 35570 CAT|GTAAGTAAAA...TTTTCTTTATTT/TATTTTTTTATT...AACAG|AGG 2 1 29.443
190849585 GT-AG 0 2.3802160623539517e-05 10690 rna-XM_013250951.1 34091250 6 1384909 1395598 Stomoxys calcitrans 35570 CTG|GTAAGTTTTG...TAATCCTTCTCA/TATCTTTTCATA...TATAG|GTT 1 1 33.588
190849586 GT-AG 0 1.000000099473604e-05 69 rna-XM_013250951.1 34091250 7 1384633 1384701 Stomoxys calcitrans 35570 ATG|GTGAGTGGAT...AATCTTTTAGAA/AAAAACCTAATT...TTAAG|GTT 1 1 40.451
190849587 GT-AG 0 1.000000099473604e-05 3906 rna-XM_013250951.1 34091250 8 1380611 1384516 Stomoxys calcitrans 35570 ATT|GTAAGTAAAA...AAGACTTTATTT/TTTTTTGTTATT...TTTAG|GGT 0 1 44.297
190849588 GT-AG 0 1.000000099473604e-05 72 rna-XM_013250951.1 34091250 9 1379766 1379837 Stomoxys calcitrans 35570 CAA|GTAAGTAAGG...TTATTTTTATTT/TTTATTTTTATT...TTTAG|AGG 2 1 69.927
190849589 GT-AG 0 0.0004943248884978 91 rna-XM_013250951.1 34091250 10 1379577 1379667 Stomoxys calcitrans 35570 ATA|GTAAGTTTAT...TGTTTTTTGAAA/AAATTTCTAACA...TCCAG|ATA 1 1 73.176
190849590 GT-AG 0 1.000000099473604e-05 64 rna-XM_013250951.1 34091250 11 1378775 1378838 Stomoxys calcitrans 35570 ACA|GTAAGTGAAC...ACTATTTTAACT/TTTTAACTCACA...TACAG|ATC 1 1 97.646

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE "introns" (
"id" INTEGER,
  "dinucleotide_pair" TEXT,
  "is_minor" INTEGER,
  "score" REAL,
  "length" INTEGER,
  "transcript_id" INTEGER,
  "ordinal_index" INTEGER,
  "start" INTEGER,
  "end" INTEGER,
  "taxonomy_id" INTEGER,
  "scored_motifs" TEXT,
  "phase" INTEGER,
  "in_cds" INTEGER,
  "relative_position" REAL
  ,PRIMARY KEY ([id]),
   FOREIGN KEY([transcript_id]) REFERENCES [transcripts]([id]),
   FOREIGN KEY([taxonomy_id]) REFERENCES [genomes]([taxonomy_id])
);
CREATE INDEX [idx_introns_transcript_id]
    ON [introns] ([transcript_id]);
CREATE INDEX [idx_introns_taxonomy_id]
    ON [introns] ([taxonomy_id]);
CREATE INDEX [idx_introns_phase]
    ON [introns] ([phase]);
CREATE INDEX [idx_introns_is_minor]
    ON [introns] ([is_minor]);
CREATE INDEX [idx_introns_dinucleotide_pair]
    ON [introns] ([dinucleotide_pair]);
CREATE INDEX [idx_introns_score]
    ON [introns] ([score]);
CREATE INDEX [idx_introns_in_cds]
    ON [introns] ([in_cds]);
Powered by Datasette · Queries took 199.538ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)