This file contains hidden or 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
version 1.0 | |
task do_something { | |
input { | |
File fastq | |
String basename_of_fq | |
} | |
command <<< | |
echo "First ten lines of ~{basename_of_fq}: " >> output.txt | |
head ~{fastq} >> output.txt |
This file contains hidden or 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
{ | |
"my_workflow.fq": "./data/example.fq" | |
} |
This file contains hidden or 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
version 1.0 | |
task do_something { | |
input { | |
File fastq | |
String basename_of_fq | |
} | |
command <<< | |
echo "First ten lines of ~{basename_of_fq}: " | |
head ~{fastq} |
This file contains hidden or 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
version 1.0 | |
task do_something { | |
input { | |
File fastq | |
} | |
command <<< | |
exit 0 | |
>>> | |
} |
This file contains hidden or 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
version 1.0 | |
task do_something { | |
command <<< | |
exit 0 | |
>>> | |
} | |
workflow my_workflow { | |
call do_something |
NewerOlder