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

✎ 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
65073490 GT-AG 0 1.000000099473604e-05 2226 rna-XM_026112415.1 11997941 1 6688153 6690378 Dromaius novaehollandiae 8790 CAG|GTGAGAGGAA...CTTACTTTATTT/ATTTAACTTACT...CGTAG|ATC 2 1 11.415
65073491 GT-AG 0 1.000000099473604e-05 875 rna-XM_026112415.1 11997941 2 6690465 6691339 Dromaius novaehollandiae 8790 GAG|GTGGGAAAGA...AGTTTCTTTCCT/AGATTCTTCAGG...TTTAG|CTT 1 1 15.472
65073492 GT-AG 0 1.000000099473604e-05 693 rna-XM_026112415.1 11997941 3 6691429 6692121 Dromaius novaehollandiae 8790 CAG|GTAATGCTAC...ACTTTCTTCTTG/GTGTTTCTGAGA...TGCAG|ATC 0 1 19.67
65073493 GT-AG 0 1.000000099473604e-05 343 rna-XM_026112415.1 11997941 4 6692194 6692536 Dromaius novaehollandiae 8790 GGG|GTGAGTAAAA...AGTGCCTGAAAC/GCTCTTTTCAAG...TCCAG|GTT 0 1 23.066
65073494 GT-AG 0 1.000000099473604e-05 850 rna-XM_026112415.1 11997941 5 6692701 6693550 Dromaius novaehollandiae 8790 CAG|GTGTGTCAGT...AGTAACTTAATC/CAACTTCTCAGT...CACAG|GTA 2 1 30.802
65073495 GT-AG 0 2.838530334927344e-05 2358 rna-XM_026112415.1 11997941 6 6693663 6696020 Dromaius novaehollandiae 8790 CAG|GTACAGTCCC...GCTTTCTTGGTT/TTGTCCATCATT...AATAG|ATG 0 1 36.085
65073496 GT-AG 0 1.000000099473604e-05 1647 rna-XM_026112415.1 11997941 7 6696167 6697813 Dromaius novaehollandiae 8790 TCT|GTGAGTTTGT...TACTCATTAGTT/TCTCTACTCATT...TACAG|CCC 2 1 42.972
65073497 GT-AG 0 1.000000099473604e-05 1711 rna-XM_026112415.1 11997941 8 6697983 6699693 Dromaius novaehollandiae 8790 CAG|GTGAGCCAGG...TCTCTCTTTCCT/TGGTTGCTGATG...TATAG|GCA 0 1 50.943
65073498 GT-AG 0 1.000000099473604e-05 2152 rna-XM_026112415.1 11997941 9 6699765 6701916 Dromaius novaehollandiae 8790 CAG|GTAGGTAAAT...GGTTATTTGATC/GGTTATTTGATC...GGCAG|GTA 2 1 54.292
65073499 GT-AG 0 1.000000099473604e-05 1306 rna-XM_026112415.1 11997941 10 6702077 6703382 Dromaius novaehollandiae 8790 AAG|GTATGGTGAT...ATTTTCACAACA/TATTTTCACAAC...TGTAG|GAG 0 1 61.84
65073500 GT-AG 0 1.000000099473604e-05 545 rna-XM_026112415.1 11997941 11 6703867 6704411 Dromaius novaehollandiae 8790 CAG|GTAAAAGTTC...GAGACCTAAAAT/AATGCTCTGAGA...TTCAG|CTC 1 1 84.67
65074137 GT-AG 0 1.000000099473604e-05 22442 rna-XM_026112415.1 11997941 12 6704559 6727000 Dromaius novaehollandiae 8790 AAG|GTAATTGAAG...TTCAGTTTAACA/TTCAGTTTAACA...ATTAG|GCA   0 91.604

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