-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added sample tools.groovy sample + portability fixes
- avoid zcat due to OS X issue with syntax - define type for all run_salmon stages (otherwise breaks with newer bpipe versions) - remove quant type from create_salmon_index (legacy code)
- Loading branch information
Showing
3 changed files
with
16 additions
and
6 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,4 +1,4 @@ | ||
tools* | ||
tools/* | ||
ref* | ||
*/__pycache__ | ||
allvars-case* | ||
|
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,13 @@ | ||
// Path to tools used by the MINTIE pipeline | ||
bpipe="bpipe" | ||
fastuniq="fastuniq" | ||
dedupe="dedupe.sh" | ||
trimmomatic="trimmomatic" | ||
fasta_formatter="fasta_formatter" | ||
samtools="samtools" | ||
bedtools="bedtools" | ||
soapdenovotrans="SOAPdenovo-Trans-127mer" | ||
salmon="salmon" | ||
gmap="gmap" | ||
R="R" | ||
python="python" |