generated from stjude-biohackathon/KIDS24-team
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement more of the
sprocket run
command.
- Loading branch information
1 parent
515b01f
commit 6d1eb37
Showing
8 changed files
with
437 additions
and
26 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"url": "https://www.encodeproject.org/files/ENCFF863PGO/@@download/ENCFF863PGO.bam" | ||
} |
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,21 @@ | ||
## This is a demonstration of evaluating WDL and running a task using crankshaft. | ||
version 1.2 | ||
|
||
task samtools_flagstat { | ||
input { | ||
String url | ||
} | ||
|
||
command <<< | ||
samtools flagstat <(wget -O - -q '~{url}' | samtools view -h | head -n 100000) | ||
>>> | ||
|
||
requirements { | ||
container: "quay.io/biocontainers/samtools:1.19.2--h50ea8bc_0" | ||
} | ||
|
||
output { | ||
String stats = read_string(stdout()) | ||
} | ||
} |
Oops, something went wrong.