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)

14 rows where transcript_id = 6831600

✎ 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
35540799 GT-AG 0 1.000000099473604e-05 8402 rna-XM_009709955.1 6831600 1 702 9103 Cariama cristata 54380 ATG|GTAAGTCTGT...GAAATTTTAGTA/TTGAGATTGAAA...CCTAG|GCT 1 1 5.758
35540800 GT-AG 0 1.000000099473604e-05 9865 rna-XM_009709955.1 6831600 2 9160 19024 Cariama cristata 54380 CAG|GTAAACATAC...GTTGCCTGAAAA/TAAAGTCTGAAA...TAAAG|GAT 0 1 8.029
35540801 GT-AG 0 1.0866704651243245e-05 2508 rna-XM_009709955.1 6831600 3 19124 21631 Cariama cristata 54380 CAG|GTAAGTTTGA...CTTTTTTTGAAC/CTTTTTTTGAAC...TGTAG|GTT 0 1 12.044
35540802 GT-AG 0 1.571596393545844e-05 8948 rna-XM_009709955.1 6831600 4 22250 31197 Cariama cristata 54380 CAG|GTAAGTTTCA...TGCCTTTTGATA/TGCCTTTTGATA...TGTAG|GAA 0 1 37.105
35540803 GT-AG 0 1.000000099473604e-05 103 rna-XM_009709955.1 6831600 5 31276 31378 Cariama cristata 54380 TTG|GTAAGGAATC...TTTTTTTTAATT/TTTTTTTTAATT...TTCAG|GTA 0 1 40.268
35540804 GT-AG 0 1.000000099473604e-05 497 rna-XM_009709955.1 6831600 6 31496 31992 Cariama cristata 54380 TTG|GTAAGTCAGT...TTTTATTTGACT/TTTTATTTGACT...TCCAG|GGT 0 1 45.012
35540805 GT-AG 0 1.000000099473604e-05 1344 rna-XM_009709955.1 6831600 7 32110 33453 Cariama cristata 54380 GAT|GTAAGTAGAG...TTTGCCTTCTTT/TTAGAATTGATT...GTTAG|GAT 0 1 49.757
35540806 GT-AG 0 1.4884597616176484e-05 93 rna-XM_009709955.1 6831600 8 33586 33678 Cariama cristata 54380 AAT|GTAAGTAAAT...TTATTTTTAATT/TTATTTTTAATT...TTTAG|AAA 0 1 55.109
35540807 GT-AG 0 1.000000099473604e-05 622 rna-XM_009709955.1 6831600 9 33782 34403 Cariama cristata 54380 AAG|GTAATGCCAC...ATATCCTAGATA/ATATGTTTAATT...TACAG|ATG 1 1 59.286
35540808 GT-AG 0 0.0015929927265256 1244 rna-XM_009709955.1 6831600 10 34563 35806 Cariama cristata 54380 TGT|GTAAGTTTGA...ATTCTTTTGACA/ATTCTTTTGACA...TTCAG|GTG 1 1 65.734
35540809 GT-AG 0 1.000000099473604e-05 1840 rna-XM_009709955.1 6831600 11 35977 37816 Cariama cristata 54380 GTG|GTGAGTGCTG...GTCACTTTATGT/TGTTTGTTCATT...TATAG|GAA 0 1 72.628
35540810 GT-AG 0 1.000000099473604e-05 3417 rna-XM_009709955.1 6831600 12 37960 41376 Cariama cristata 54380 CAG|GTAAAATGCA...TTGGTTTTGAAT/TTAAAACTTACT...TGCAG|CAT 2 1 78.427
35540811 GT-AG 0 6.492933204712145e-05 521 rna-XM_009709955.1 6831600 13 41568 42088 Cariama cristata 54380 AAT|GTAAGTAATG...ATTGCTTTAATT/ATTGCTTTAATT...TCCAG|TAA 1 1 86.172
35540812 GT-AG 0 3.086482520739875e-05 2306 rna-XM_009709955.1 6831600 14 42316 44621 Cariama cristata 54380 AAG|GTAATTTTGA...ATTTTCTGAATT/CATTTTCTGAAT...TGTAG|GGA 0 1 95.377

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 25.589ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)