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)

11 rows where transcript_id = 21436538

✎ 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
115633851 GT-AG 0 1.6280165279547254e-05 7832 rna-XM_005153479.3 21436538 2 52685098 52692929 Melopsittacus undulatus 13146 AAG|GTAACAAAAT...TACTTTTTATTT/ATACTTTTTATT...ATTAG|AGC 0 1 3.962
115633852 GT-AG 0 1.000000099473604e-05 9761 rna-XM_005153479.3 21436538 3 52693078 52702838 Melopsittacus undulatus 13146 CAG|GTAGAACCTT...GAGTTATTAAAT/GATGTTCTAATA...TCCAG|AGA 1 1 6.335
115633853 GT-AG 0 1.000000099473604e-05 1023 rna-XM_005153479.3 21436538 4 52702986 52704008 Melopsittacus undulatus 13146 CAG|GTGAGCTTGC...ACCATTTTAAAA/TGTTAAGTAACT...TGTAG|ATT 1 1 8.693
115633854 GT-AG 0 1.000000099473604e-05 4238 rna-XM_005153479.3 21436538 5 52704210 52708447 Melopsittacus undulatus 13146 CAG|GTAAGTTGAT...GGATCTTTGACC/GGATCTTTGACC...TACAG|GTT 1 1 11.917
115633855 GT-AG 0 1.000000099473604e-05 1619 rna-XM_005153479.3 21436538 6 52708591 52710209 Melopsittacus undulatus 13146 AAT|GTGAGTCTGC...ATTTATTTAATG/CATTTATTTAAT...TGCAG|ATT 0 1 14.21
115633856 GT-AG 0 1.000000099473604e-05 237 rna-XM_005153479.3 21436538 7 52710358 52710594 Melopsittacus undulatus 13146 CAG|GTAAAAGTAG...TTTCTTCTGACA/TTTCTTCTGACA...TCTAG|ATT 1 1 16.584
115633857 GT-AG 0 1.000000099473604e-05 7487 rna-XM_005153479.3 21436538 8 52715271 52722757 Melopsittacus undulatus 13146 ACA|GTAAGTAACA...TAAATATTGACT/TAAATATTGACT...CACAG|ATT 0 1 91.58
115633858 GT-AG 0 1.000000099473604e-05 1633 rna-XM_005153479.3 21436538 9 52722857 52724489 Melopsittacus undulatus 13146 AGG|GTAAGGCTAA...AAATGCTTAATT/TGTGTATTTATA...ATTAG|GAA 0 1 93.168
115633859 GT-AG 0 1.000000099473604e-05 2936 rna-XM_005153479.3 21436538 10 52724634 52727569 Melopsittacus undulatus 13146 CAG|GTAAAGAATA...TACCTTTTGAAT/AAATAACTTACC...TGCAG|GCT 0 1 95.477
115633860 GT-AG 0 0.1232040184238465 347 rna-XM_005153479.3 21436538 11 52727666 52728012 Melopsittacus undulatus 13146 AAG|GTATGCTTCT...TCTTTCTCAATT/ATTTTTTTCATA...AACAG|ACG 0 1 97.017
115645495 GT-AG 0 1.000000099473604e-05 19255 rna-XM_005153479.3 21436538 1 52665705 52684959 Melopsittacus undulatus 13146 AAG|GTGAGGACTT...TGTTCTTTGTTT/TCTTTGTTTATT...TTCAG|ACA   0 2.566

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