-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Click options for helper scripts * Patched output from SVG/PNG export; added default options
- Loading branch information
1 parent
9b39166
commit 38af4d3
Showing
6 changed files
with
300 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
# Extract transcripts data from GTF file | ||
|
||
python extract_transcript_data.py | ||
python extract_transcript_data.py --input-filename annotations.gtf --chromsizes-filename chromSizes.txt --output-filename transcripts.txt | ||
|
||
# Aggregate with clods | ||
# Aggregate with aggregate_transcripts.py | ||
|
||
clodius aggregate bedfile --max-per-tile 20 --importance-column 5 --chromsizes-filename chromInfo_hg38.txt --output-file transcripts_20200722.db --delimiter $'\t' gene_table_v2_transcripts_names_new.txt | ||
python aggregate_transcripts.py --input-filename transcripts.txt --chromsizes-filename chromSizes.txt --output-filename transcripts.beddb | ||
|
||
# Aggregate with clodius | ||
|
||
clodius aggregate bedfile --max-per-tile 20 --importance-column 5 --chromsizes-filename chromSizes.txt --output-file transcripts.beddb --delimiter $'\t' transcripts.txt | ||
|
||
# Ingest to server | ||
|
||
python manage.py ingest_tileset --filename data/transcripts_20200722.db --filetype beddb --datatype gene-annotation --uid transcripts_20200722 | ||
python manage.py ingest_tileset --filename transcripts.beddb --filetype beddb --datatype gene-annotation --uid transcripts_abcd1234 |
Oops, something went wrong.