Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

blast multiple protein files

proteins = Channel.fromPath( '/some/path/*.fa' )

process blastThemAll {
  input:
  path query_file from proteins

  "blastp -query ${query_file} -db nr"
}
Comment

blast multiple protein files

input:
    path query_file name 'query.fa' from proteins
Comment

blast multiple protein files

input:
    path 'query.fa' from proteins
Comment

blast multiple protein files

proteins = Channel.fromPath( '/some/path/*.fa' )

process blastThemAll {
  input:
  path 'query.fa' from proteins

  "blastp -query query.fa -db nr"
}
Comment

PREVIOUS NEXT
Code Example
Java :: Iterating The Queue Elements 
Java :: copy and deletion of div by pressing button in javasript 
Java :: cfgbcfdxv 
Java :: force_dark_auto android webview 
Java :: create object of hashMap with integer key and String value 
Java :: regex pattern to mathc IP address 
Java :: java bter data atual no padrão brasileiro 
Java :: mincraft command in plugin 
Java :: where do you use overriding in framework 
Java :: code to close dialog containg layout 
Java :: Java Creating HashMap from Other Maps 
Java :: public static void nPrintln(String message, int n) { 
Java :: poo pledin 3.0 
Java :: java preprocessor example 
Java :: diamonds 
Java :: Java Create a FileOutputStream 
Java :: how to avoid outside click of alerdialoge android 
Java :: how to add a hyperlink in a string in java mail 
Java :: Get Max Value Element From List With Objects 
Java :: javafx how to put multiple handlers in the same line 
Java :: How to convert Javascript return value to String in Android 
Java :: how to see page is open in selenium 
Java :: how to split each string of a line 
Java :: reversing an integer with overflow handled 
Java :: Display a Text Five Times 
Java :: Error in .jcall("RJavaTools", "Ljava/lang/Object;", "invokeMethod", cl, : java.util.zip.ZipException: invalid code -- missing end-of-block 
Java :: Based on the method exampleMethod, what is the return type of the method? 
Java :: Java Program to Print Spiral Pattern of Numbers 
Java :: how to know when user is done typing android 
Java :: Returning methods 
ADD CONTENT
Topic
Content
Source link
Name
5+8 =