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)

13 rows where transcript_id = 27391017

✎ 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
152560648 GT-AG 0 1.000000099473604e-05 11800 rna-XM_008796867.4 27391017 1 33290465 33302264 Phoenix dactylifera 42345 AAG|GTGAGTACTG...GTGCTCATATCA/TCAGTGCTCATA...TGCAG|GCT 2 1 4.468
152560649 GT-AG 0 1.000000099473604e-05 3162 rna-XM_008796867.4 27391017 2 33287081 33290242 Phoenix dactylifera 42345 AAG|GTGAATTTGC...ATTATCTTAATT/ATTATCTTAATT...GATAG|ATT 2 1 9.428
152560650 GT-AG 0 1.000000099473604e-05 324 rna-XM_008796867.4 27391017 3 33286622 33286945 Phoenix dactylifera 42345 AAG|GTGAGTTTCA...TTTATCTTGATG/ACATTTTTTATC...TTCAG|GCC 2 1 12.444
152560651 GT-AG 0 0.0047891376756268 93 rna-XM_008796867.4 27391017 4 33286298 33286390 Phoenix dactylifera 42345 AAG|GTATTTTCTA...TATCTCATGACA/ATATATCTCATG...TGCAG|GGA 2 1 17.605
152560652 GT-AG 0 0.0001348559764244 148 rna-XM_008796867.4 27391017 5 33285899 33286046 Phoenix dactylifera 42345 CAG|GTATATCCAA...AGAGCATTAAAA/ATTTATGTTATG...TTCAG|AAT 1 1 23.213
152560653 GT-AG 0 1.000000099473604e-05 108 rna-XM_008796867.4 27391017 6 33285690 33285797 Phoenix dactylifera 42345 AAG|GTAGTGGATG...AAGTTCTTGTCT/TTACTTTTCATC...TGCAG|TAT 0 1 25.469
152560654 GT-AG 0 0.0165960149454792 99 rna-XM_008796867.4 27391017 7 33285375 33285473 Phoenix dactylifera 42345 ATG|GTATTATTCA...TGTTCCTTGTCT/TAGAAGTTGAGT...ACCAG|ATA 0 1 30.295
152560655 GT-AG 0 0.0001247929316112 77 rna-XM_008796867.4 27391017 8 33285070 33285146 Phoenix dactylifera 42345 AAA|GTAAGCTGTC...TGTGGCTTAAAA/TTTTGGCTGATC...TTTAG|GTG 0 1 35.389
152560656 GT-AG 0 0.0042750603954853 82 rna-XM_008796867.4 27391017 9 33284896 33284977 Phoenix dactylifera 42345 AAG|GTATTCATGT...ATGGTTTTGGCA/TTTAATATGATA...TCCAG|AGC 2 1 37.444
152560657 GT-AG 0 0.003217353971313 1065 rna-XM_008796867.4 27391017 10 33283737 33284801 Phoenix dactylifera 42345 AAG|GTAACTTTGT...GATATTTTAGGA/TGTAGTTTAAGC...TCCAG|ATA 0 1 39.544
152560658 GT-AG 0 0.0002453000382531 85 rna-XM_008796867.4 27391017 11 33283559 33283643 Phoenix dactylifera 42345 GGG|GTAAATTTTG...ATTCTCTGAACA/ATCAAATTAATT...TTCAG|GAG 0 1 41.622
152560659 GT-AG 0 0.0004928460013082 92 rna-XM_008796867.4 27391017 12 33282772 33282863 Phoenix dactylifera 42345 AAG|GTTTGTTTTT...CATGTTTTAAAA/GCATTATTAACT...GCCAG|AAA 2 1 57.149
152560660 GT-AG 0 0.0142307974369563 102 rna-XM_008796867.4 27391017 13 33282555 33282656 Phoenix dactylifera 42345 GCA|GTAAGCTACC...AGCTCCTTATTT/CCTTATTTTACT...TGAAG|CCA 0 1 59.718

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