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 = 4024583

✎ 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
20805543 GT-AG 0 0.0002821220811929 1749 rna-XM_010306497.1 4024583 1 29754 31502 Balearica regulorum 925459 AAG|GTATGTACAT...AATACTTTATCT/GTACTGTTCACT...TTCAG|AAT 2 1 5.148
20805544 GT-AG 0 1.000000099473604e-05 1203 rna-XM_010306497.1 4024583 2 28496 29698 Balearica regulorum 925459 AAG|GTAAAGTGGT...TGTGTTTTGCTC/AGTTATCTGAAG...TACAG|TCT 0 1 7.951
20805545 GT-AG 0 0.0060329608568469 1051 rna-XM_010306497.1 4024583 3 27323 28373 Balearica regulorum 925459 CAG|GTATGTCTCT...TTTTTTTTAATT/TTTTTTTTAATT...CACAG|AAA 2 1 14.169
20805546 GT-AG 0 3.909412690919769e-05 1815 rna-XM_010306497.1 4024583 4 25428 27242 Balearica regulorum 925459 ACG|GTAGGTTTCA...CGATTCTTTTCT/TTCTGTCTGATT...TATAG|GAT 1 1 18.247
20805547 GT-AG 0 1.000000099473604e-05 92 rna-XM_010306497.1 4024583 5 25203 25294 Balearica regulorum 925459 GTG|GTAAGTATAT...TTTCTCTTACTA/CTTTCTCTTACT...CGTAG|GTA 2 1 25.025
20805548 GT-AG 0 0.0001872021438093 4692 rna-XM_010306497.1 4024583 6 20339 25030 Balearica regulorum 925459 AAG|GTAACACTTC...TTTTTCTTTTCA/TTTCTTTTCATT...AACAG|AGT 0 1 33.792
20805549 GT-AG 0 1.000000099473604e-05 1744 rna-XM_010306497.1 4024583 7 18427 20170 Balearica regulorum 925459 CAG|GTCTGAGCAC...AACATTTTGAAG/TATTATATTATA...CTCAG|GCT 0 1 42.355
20805550 GT-AG 0 0.0001367648434223 1012 rna-XM_010306497.1 4024583 8 17094 18105 Balearica regulorum 925459 CCA|GTAAGTTGTC...TTCCCCTTTTTA/TTAGAATTGAAT...TATAG|AAA 0 1 58.716
20805551 GT-AG 0 1.000000099473604e-05 529 rna-XM_010306497.1 4024583 9 16374 16902 Balearica regulorum 925459 TAG|GTAAGTCCTA...ATTGTTTGAACA/AACATTCTGATT...TTCAG|TGT 2 1 68.451
20805552 GT-AG 0 1.000000099473604e-05 968 rna-XM_010306497.1 4024583 10 15275 16242 Balearica regulorum 925459 CTG|GTAAGGGTAA...TTTTCCATAATT/TTGGTGTTTATA...CTAAG|GTG 1 1 75.127
20805553 GT-AG 0 1.000000099473604e-05 1911 rna-XM_010306497.1 4024583 11 13235 15145 Balearica regulorum 925459 CAG|GTAAAAGTGT...TTTTTCTTCATT/TTTTTCTTCATT...TACAG|ATG 1 1 81.702
20805554 GT-AG 0 1.4260484217615473e-05 2989 rna-XM_010306497.1 4024583 12 10171 13159 Balearica regulorum 925459 AAG|GTAATTTATA...GTTTTCTGAATG/CGTTTTCTGAAT...AACAG|GAA 1 1 85.525
20805555 GT-AG 0 1.000000099473604e-05 3205 rna-XM_010306497.1 4024583 13 6837 10041 Balearica regulorum 925459 CAG|GTAAGAAACA...TAATTCTGAGTT/TTAATTCTGAGT...TTCAG|ATT 1 1 92.1

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