-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from flatironinstitute/rename
Rename
- Loading branch information
Showing
53 changed files
with
767 additions
and
396 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,29 @@ | ||
# srrTomat0 | ||
|
||
[![Travis](https://travis-ci.org/cskokgibbs/srrTomat0.svg?branch=master)](https://travis-ci.org/cskokgibbs/srrTomat0) | ||
# inferelator-prior | ||
|
||
This is a set of pipelines to create expression and prior matrices for network inference. They are designed to create | ||
data that is compatible with the [inferelator](https://github.com/flatironinstitute/inferelator) package. In addition to | ||
data that is compatible with the [inferelator](https://github.com/flatironinstitute/inferelator) package. | ||
|
||
### Usage | ||
|
||
python -m inferelator_prior.network_from_motifs | ||
usage: network_from_motifs.py -m motif_PWM_file.meme | ||
-f genome_fasta_file.fasta | ||
-g genome_annotation_file.gtf | ||
-o ~/output/path/prefix | ||
--species {yeast,fly,mouse,human}] | ||
This requires a motif PWM database (`-m PATH`), | ||
a genome to search (both sequence as a FASTA `-f PATH` and annotations `-g PATH`), | ||
and an output prefix for several files (`-o PATH`). | ||
In addition, default settings for a specific species can be set with (`--species`). | ||
|
||
### Requirements | ||
|
||
In addition to | ||
python dependencies, this package also requires | ||
[STAR](https://github.com/alexdobin/STAR), | ||
[sra-tools](http://ncbi.github.io/sra-tools/), | ||
[bedtools](https://bedtools.readthedocs.io/en/latest/), | ||
[samtools](http://www.htslib.org/), | ||
[homer](http://homer.ucsd.edu/homer/), and | ||
[samtools](http://www.htslib.org/), and | ||
[fimo](http://meme-suite.org/doc/fimo.html). | ||
|
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from inferelator_prior.motifs._motif import (Motif, motifs_to_dataframe, chunk_motifs, | ||
INFO_COL, MOTIF_COL, ENTROPY_COL, LEN_COL, OCC_COL, MOTIF_NAME_COL, SCAN_SCORE_COL, | ||
SCORE_PER_BASE) | ||
from inferelator_prior.motifs.motif_scan import MotifScan |
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
2 changes: 1 addition & 1 deletion
2
srrTomat0/motifs/homer_motif.py → inferelator_prior/motifs/homer_motif.py
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,4 +1,4 @@ | ||
from srrTomat0.motifs import Motif | ||
from inferelator_prior.motifs import Motif | ||
|
||
import numpy as np | ||
|
||
|
8 changes: 4 additions & 4 deletions
8
srrTomat0/motifs/motif_scan.py → inferelator_prior/motifs/motif_scan.py
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
Oops, something went wrong.