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)

14 rows where transcript_id = 2107342

✎ 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
11507435 GT-AG 0 2.7540213023001894e-05 777 rna-XM_009865218.1 2107342 1 244 1020 Apaloderma vittatum 57397 TAG|GTAAGTTTTC...TGTGCTGTAACT/TGTGCTGTAACT...TTTAG|TAT 2 1 9.706
11507436 GT-AG 0 1.000000099473604e-05 4258 rna-XM_009865218.1 2107342 2 1095 5352 Apaloderma vittatum 57397 CTG|GTAAGAGAAA...TTTTTCTTTACT/TTTTTCTTTACT...AACAG|CTG 1 1 15.593
11507437 GT-AG 0 0.0002217740555552 2485 rna-XM_009865218.1 2107342 3 5406 7890 Apaloderma vittatum 57397 AAG|GTATTTATTT...GCTTTCTAAAGA/CGCTTTCTAAAG...TATAG|GTC 0 1 19.809
11507438 GT-AG 0 1.000000099473604e-05 11262 rna-XM_009865218.1 2107342 4 7931 19192 Apaloderma vittatum 57397 GAG|GTAAGAAACT...ATTCCTCTATTA/CCTCTATTAAGT...TGCAG|CTA 1 1 22.991
11507439 GT-AG 0 1.000000099473604e-05 4710 rna-XM_009865218.1 2107342 5 19272 23981 Apaloderma vittatum 57397 TGG|GTAAGGAAAA...ATTTTTTTAGGA/TATTTTTTTAGG...AACAG|ATC 2 1 29.276
11507440 GT-AG 0 1.000000099473604e-05 470 rna-XM_009865218.1 2107342 6 24065 24534 Apaloderma vittatum 57397 TTG|GTGAGTAATT...CTTTCCTTATAA/TTTATTTTTACT...TACAG|GCT 1 1 35.879
11507441 GT-AG 0 1.000000099473604e-05 4536 rna-XM_009865218.1 2107342 7 24594 29129 Apaloderma vittatum 57397 GTG|GTAAGTTAAA...TGATTTTTAGGG/TTTAAACTGATT...TGCAG|GTT 0 1 40.573
11507442 GT-AG 0 1.000000099473604e-05 192 rna-XM_009865218.1 2107342 8 29196 29387 Apaloderma vittatum 57397 CAG|GTAAAGCACA...TTTTTCTTGTAT/TTTGGGCTTATT...TACAG|GTT 0 1 45.823
11507443 GT-AG 0 0.0001622358561508 1626 rna-XM_009865218.1 2107342 9 29442 31067 Apaloderma vittatum 57397 GAG|GTAATCTCTA...CCATCTGTAATA/TCTGTAATAACA...TTTAG|AGT 0 1 50.119
11507444 GT-AG 0 1.000000099473604e-05 686 rna-XM_009865218.1 2107342 10 31148 31833 Apaloderma vittatum 57397 AAG|GTAATGTCTG...GTTTTTTTGTTT/AACACTTTTATG...TTTAG|TCC 2 1 56.484
11507445 GT-AG 0 1.000000099473604e-05 4107 rna-XM_009865218.1 2107342 11 31935 36041 Apaloderma vittatum 57397 ATG|GTGAGTATAT...GTTACCTTAGCT/AAATGACTAACA...TTCAG|ACA 1 1 64.519
11507446 GT-AG 0 1.000000099473604e-05 890 rna-XM_009865218.1 2107342 12 36167 37056 Apaloderma vittatum 57397 CCA|GTGAGTACTC...TTTCTCTTCCTA/TATTTACTCATG...TGTAG|GCA 0 1 74.463
11507447 GT-AG 0 1.000000099473604e-05 80 rna-XM_009865218.1 2107342 13 37202 37281 Apaloderma vittatum 57397 TTG|GTAAGTCATG...AAAATCTTACTT/TAAAATCTTACT...TAAAG|GTT 1 1 85.998
11507448 GT-AG 0 0.000138074624664 1130 rna-XM_009865218.1 2107342 14 37377 38506 Apaloderma vittatum 57397 GGG|GTATGGTGTT...TGATTTTTGCTT/AAAATGCTGATT...CACAG|GCA 0 1 93.556

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