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)

12 rows where transcript_id = 11997960

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
65073708 GT-AG 0 1.000000099473604e-05 215 rna-XM_026105887.1 11997960 2 5388963 5389177 Dromaius novaehollandiae 8790 TAG|GTAAATAACT...GTTTACTTAATC/CTGGAATTTATT...TGTAG|TAA 2 1 16.528
65073709 GT-AG 0 1.2865331290125229e-05 1056 rna-XM_026105887.1 11997960 3 5387672 5388727 Dromaius novaehollandiae 8790 GTG|GTATGACCAA...GGTTTATTGATT/GGTTTATTGATT...TCCAG|AAG 0 1 31.582
65073710 GT-AG 0 0.0006930788225918 415 rna-XM_026105887.1 11997960 4 5387166 5387580 Dromaius novaehollandiae 8790 GAT|GTATAGAATA...ACTTCTGTGACT/AGTAACTTCACA...TTTAG|ATG 1 1 37.412
65073711 GT-AG 0 3.449625327441673e-05 1124 rna-XM_026105887.1 11997960 5 5385975 5387098 Dromaius novaehollandiae 8790 GGC|GTAAGTCTTT...ATTGCCATAAAA/ATTGTTCTAATT...TTCAG|GGG 2 1 41.704
65073712 GT-AG 0 1.695867673005924e-05 876 rna-XM_026105887.1 11997960 6 5384982 5385857 Dromaius novaehollandiae 8790 ATA|GTAAGTATAC...TATAACTTAATG/ATTTATATAACT...TACAG|TCG 2 1 49.199
65073713 GT-AG 0 0.0004423631387843 72 rna-XM_026105887.1 11997960 7 5384743 5384814 Dromaius novaehollandiae 8790 ACT|GTAAGTCTAT...TTTTCTTTGAAT/TTTTCTTTGAAT...TGCAG|TTT 1 1 59.898
65073714 GT-AG 0 1.000000099473604e-05 87 rna-XM_026105887.1 11997960 8 5384561 5384647 Dromaius novaehollandiae 8790 CTG|GTAAGTCTCC...TATTCCATCATC/CCTGGGTTTATT...TTCAG|AAA 0 1 65.983
65073715 GT-AG 0 1.000000099473604e-05 336 rna-XM_026105887.1 11997960 9 5384095 5384430 Dromaius novaehollandiae 8790 TAG|GTTAGTAGAA...ACCTTCTCAATT/AACCTTCTCAAT...CACAG|CGT 1 1 74.311
65073716 GT-AG 0 1.000000099473604e-05 611 rna-XM_026105887.1 11997960 10 5383401 5384011 Dromaius novaehollandiae 8790 CCG|GTAGGTAACG...AAATCTTTGTAT/GGTAAATTCATC...TCTAG|ACC 0 1 79.628
65073717 GT-AG 0 1.000000099473604e-05 272 rna-XM_026105887.1 11997960 11 5383049 5383320 Dromaius novaehollandiae 8790 AAG|GTAATTACAT...CTCCACATAACA/ATACTCCACATA...TCAAG|GAA 2 1 84.753
65073718 GT-AG 0 1.000000099473604e-05 89 rna-XM_026105887.1 11997960 12 5382869 5382957 Dromaius novaehollandiae 8790 AAG|GTAAGAGAAG...GTAAAATTAAAA/TTAAAAATAATA...AAAAG|GAA 0 1 90.583
65074155 GT-AG 0 1.000000099473604e-05 1302 rna-XM_026105887.1 11997960 1 5389336 5390637 Dromaius novaehollandiae 8790 GAG|GTGAGGCGAT...AATGCCTTTTCT/ATGTAATTTAAA...CACAG|ATG   0 6.406

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