mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			392 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			392 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# Sample originally from https://github.com/broadinstitute/centaur
 | 
						|
 | 
						|
task hello {
 | 
						|
  String addressee
 | 
						|
  command {
 | 
						|
    echo "Hello ${addressee}!"
 | 
						|
  }
 | 
						|
  output {
 | 
						|
    String salutation = read_string(stdout())
 | 
						|
  }
 | 
						|
  runtime {
 | 
						|
    docker: "ubuntu@sha256:71cd81252a3563a03ad8daee81047b62ab5d892ebbfbf71cf53415f29c130950"
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
workflow wf_hello {
 | 
						|
  call hello
 | 
						|
  output {
 | 
						|
     hello.salutation
 | 
						|
  }
 | 
						|
}
 |