Skip to content

Commit

Permalink
Ordered imports, updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
RSWilson1 committed Sep 8, 2023
1 parent 857a764 commit edff513
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@

Custom script for processing a list of ids (HGNC, transcript) or coordinates with associated annotation, into a comprehensive bed file for the corresponding refseq transcripts for each ID entry.

## What are typical use cases for this app?
## What are typical use cases for this script?
- Converting a list of HGNC ids + associated gene level annotation information
into a comprehensive bed file for annotation with Ensemble's VEP.
- Other use cases include providing different inputs such a list of transcripts/exact coordinates.
- Other use cases include providing different inputs such a list of transcripts.
Or using exact coordinates to flag a regions such as TERT promoter.

## What data are required for this app to run?
## What data are required for this script to run?

- List of ids and annotation information in TSV format.
- Human Genome Reference (i.e. hs37d5)
Expand All @@ -33,10 +34,10 @@ and bed file aligned with the respecive annotation.
to determine the corresponding chromosome for each transcript.

## Requirements

- pysam
- pandas
- igv-reports (v)
argparse
- numpy
- re

Expand Down
10 changes: 4 additions & 6 deletions gene_annotation2bed.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,13 @@
-o "test6"
"""


import pandas as pd
import numpy as np
import re

import argparse

import argcomplete
import igv_report as igv

import numpy as np
import pandas as pd
import re

import gff2pandas as gffpd

Expand Down
1 change: 1 addition & 0 deletions gff2pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"""

import itertools

import pandas as pd
import numpy as np

Expand Down

0 comments on commit edff513

Please sign in to comment.