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

✎ 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
103972458 GT-AG 0 1.000000099473604e-05 793 rna-XM_017804704.1 19419623 2 11120667 11121459 Lepidothrix coronata 321398 CCA|GTAAGTAACA...GGAATTTTAAAC/GGAATTTTAAAC...TACAG|GCC 0 1 24.832
103972459 GT-AG 0 1.000000099473604e-05 9646 rna-XM_017804704.1 19419623 3 11110933 11120578 Lepidothrix coronata 321398 TAG|GTAAGTGTTC...TATAATTTAAAA/CTGCTATTTATA...CGCAG|GTC 1 1 29.754
103972460 GT-AG 0 3.364425164636922e-05 160 rna-XM_017804704.1 19419623 4 11110659 11110818 Lepidothrix coronata 321398 CAC|GTAAGTTCAA...ATGCTCGTAACC/ATGCTCGTAACC...ATTAG|AAG 1 1 36.13
103972461 GT-AG 0 1.000000099473604e-05 1993 rna-XM_017804704.1 19419623 5 11108559 11110551 Lepidothrix coronata 321398 ACA|GTGAGTCATT...ATTGCATTATTT/CATTGCATTATT...TACAG|GGG 0 1 42.114
103972462 GT-AG 0 1.000000099473604e-05 1767 rna-XM_017804704.1 19419623 6 11106657 11108423 Lepidothrix coronata 321398 CAG|GTTGGATTTA...TCACACTTACAG/GTCACACTTACA...TACAG|CTC 0 1 49.664
103972463 GT-AG 0 1.637550259319323e-05 2763 rna-XM_017804704.1 19419623 7 11103741 11106503 Lepidothrix coronata 321398 CAG|GTACAGTATG...CTGTCCTTTCTT/TTAGCATTTAAG...TACAG|ATT 0 1 58.221
103972464 GT-AG 0 1.000000099473604e-05 4266 rna-XM_017804704.1 19419623 8 11099351 11103616 Lepidothrix coronata 321398 AAG|GTAATTAGAA...ATTGTCTTGTTT/TAAAATATTATA...TGCAG|CAG 1 1 65.157
103972465 GT-AG 0 1.000000099473604e-05 1175 rna-XM_017804704.1 19419623 9 11098090 11099264 Lepidothrix coronata 321398 AAG|GTAAGCACCT...GGTTCTTTGTTT/TCTGTTCTAATT...GACAG|GCT 0 1 69.966
103972466 GT-AG 0 1.000000099473604e-05 1241 rna-XM_017804704.1 19419623 10 11096681 11097921 Lepidothrix coronata 321398 GAG|GTAAAATAAC...TTATTATTGATT/TTATTATTGATT...TTAAG|GAA 0 1 79.362
103972467 GT-AG 0 1.000000099473604e-05 1289 rna-XM_017804704.1 19419623 11 11095252 11096540 Lepidothrix coronata 321398 AAA|GTGAGTATTA...CTGTTTTTATTT/CCTGTTTTTATT...ACCAG|TTT 2 1 87.192
103972468 GT-AG 0 1.000000099473604e-05 2719 rna-XM_017804704.1 19419623 12 11092460 11095178 Lepidothrix coronata 321398 GGG|GTAAGATCAT...TGTTTCTTGTCC/TGGCATTTCATT...TACAG|AGC 0 1 91.275
103972469 GT-AG 0 6.669969101647751e-05 1545 rna-XM_017804704.1 19419623 13 11090861 11092405 Lepidothrix coronata 321398 GAG|GTAAGCTTCA...TAATTCCTGAAG/GCTGTACTGAAC...ATTAG|GGC 0 1 94.295
103973077 GT-AG 0 1.000000099473604e-05 2407 rna-XM_017804704.1 19419623 1 11121810 11124216 Lepidothrix coronata 321398 GCG|GTAAGGAACC...AAGACTTTGTTT/TTTATAGTAATT...TTCAG|AAT   0 5.705

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