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

✎ 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
168293546 GT-AG 0 6.528951752019272e-05 25460 rna-XM_007419867.3 30057351 1 2641 28100 Python bivittatus 176946 CAG|GTGCGCTTTC...AAAGGCTTAACA/AAAGGCTTAACA...CGTAG|TCC 0 1 8.209
168293547 GT-AG 0 1.000000099473604e-05 14107 rna-XM_007419867.3 30057351 2 28274 42380 Python bivittatus 176946 CTG|GTGAGTTCCT...CTCTTTTTATTC/TTTTTATTCACA...TCTAG|TGC 2 1 18.968
168293548 GT-AG 0 1.000000099473604e-05 3842 rna-XM_007419867.3 30057351 3 42493 46334 Python bivittatus 176946 CTG|GTAAGGCATC...GCCTGTTTATTG/GGCCTGTTTATT...GGCAG|GTC 0 1 25.933
168293549 GT-AG 0 1.000000099473604e-05 2631 rna-XM_007419867.3 30057351 4 46556 49186 Python bivittatus 176946 CAG|GTAAGCGAGC...TCTCTCTTTTTC/CAGGGATTTATG...TCCAG|ATG 2 1 39.677
168293550 GT-AG 0 1.000000099473604e-05 1149 rna-XM_007419867.3 30057351 5 49283 50431 Python bivittatus 176946 TAC|GTGAGTACAC...CCCCTTTTGATG/CTGGTATTTACT...CGCAG|GAT 2 1 45.647
168293551 GT-AG 0 1.000000099473604e-05 952 rna-XM_007419867.3 30057351 6 50505 51456 Python bivittatus 176946 GTG|GTAAGCCCAA...TCCTTTTTAAAA/CTTCTAGTAATT...CATAG|GGT 0 1 50.187
168293552 GT-AG 0 1.000000099473604e-05 1347 rna-XM_007419867.3 30057351 7 51527 52873 Python bivittatus 176946 CAG|GTAAAAATAC...CACACTTTAACC/CACACTTTAACC...TGTAG|AAA 1 1 54.54
168293553 GT-AG 0 1.000000099473604e-05 500 rna-XM_007419867.3 30057351 8 52930 53429 Python bivittatus 176946 CAG|GTAAGAACTT...GTGTTCTTTATT/GTGTTCTTTATT...TGTAG|GCC 0 1 58.022
168293554 GT-AG 0 1.000000099473604e-05 1558 rna-XM_007419867.3 30057351 9 53523 55080 Python bivittatus 176946 AAA|GTAAGTGCCA...TGCCCCTTCTCT/CCTTCTCTGATG...TGCAG|AAA 0 1 63.806
168293555 GT-AG 0 1.000000099473604e-05 108 rna-XM_007419867.3 30057351 10 55174 55281 Python bivittatus 176946 AAG|GTAAGCGGCA...TTCTTCTTTTTT/GAGCAAGACACT...TAAAG|GAT 0 1 69.59
168293556 GT-AG 0 1.000000099473604e-05 923 rna-XM_007419867.3 30057351 11 55425 56347 Python bivittatus 176946 CAG|GTAAAATGGA...ACTTTCTTTTCT/TCTTTTCTCAGA...TCCAG|GGA 2 1 78.483
168293557 GT-AG 0 1.000000099473604e-05 3179 rna-XM_007419867.3 30057351 12 56534 59712 Python bivittatus 176946 CAT|GTGAGTATGC...TTCCTTTTAATA/CCTGATCTCACT...TGCAG|GAA 2 1 90.05
168293558 GT-AG 0 1.0302746695870382e-05 7067 rna-XM_007419867.3 30057351 13 59792 66858 Python bivittatus 176946 ACG|GTACGGTGGG...CTGTCATTGAAA/CAATGTATAACT...TCTAG|TAT 0 1 94.963

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