#!/usr/bin/env nextflow
process A {
output:
file 'a'
"""
echo 'Starting A'
echo 'Hello' > a
sleep 10
echo 'Finished A'
"""
}
process B {
output:
file 'b'
"""
echo 'Starting B'
echo 'World' > b
sleep 5
echo 'Finished B'
"""
}
process C {
input:
file a
file b
output:
file 'c'
"""
echo 'Starting C'
cat a b > c
echo 'Finished C'
"""
}process A {output:file 'a'"""
echo 'Starting A' `date +%H-%M-%S`
echo 'Hello' > asleep 10
echo 'Finished A' `date +%H-%M-%S`"""}
--
You received this message because you are subscribed to the Google Groups "Nextflow" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nextflow+u...@googlegroups.com.
Visit this group at http://groups.google.com/group/nextflow.
For more options, visit https://groups.google.com/d/optout.
N E X T F L O W ~ version 0.12.2
[warm up] executor > local
[da/7667a6] Submitted process > B (1)
[46/16174e] Submitted process > A (1)
Starting B 17-58-01
Finished B 17-58-06
Starting A 17-58-06
Finished A 17-58-16
[5e/f85e58] Submitted process > C (1)
Starting C
Finished CN E X T F L O W ~ version 0.12.2
[warm up] executor > local
[2b/27cad2] Submitted process > B (1)
[88/571715] Submitted process > A (1)
Starting B 21-22-51
Finished B 21-22-56
Starting A 21-22-51
Finished A 21-23-01
[9d/b137d4] Submitted process > C (1)
Starting C 21-23-01
Finished C 21-23-01
N E X T F L O W ~ version 0.12.2
[warm up] executor > local
[25/2ab4de] Submitted process > B (1)
[08/003850] Submitted process > A (1)
Starting B 19-35-00
Finished B 19-35-05
Starting A 19-35-00
Finished A 19-35-10
--
--
You received this message because you are subscribed to the Google Groups "Nextflow" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nextflow+u...@googlegroups.com.
Visit this group at https://groups.google.com/group/nextflow.