Skip to content
Snippets Groups Projects
Commit 8550676a authored by JasperBoom's avatar JasperBoom
Browse files

Update command syntax.

parent 73b04864
No related branches found
No related tags found
No related merge requests found
......@@ -38,10 +38,10 @@ task CreateAbundanceFileFromDatabase {
set -e
mkdir -p "$(dirname ~{outputPrefix})"
talon_abundance \
~{"--db=" + databaseFile} \
~{"-a " + annotationVersion} \
~{"-b " + genomeBuild} \
~{"--o=" + outputPrefix} \
--db=~{databaseFile} \
-a ~{annotationVersion} \
-b ~{genomeBuild} \
--o=~{outputPrefix} \
~{"--whitelist=" + whitelistFile} \
~{"-d " + datasetsFile}
}
......@@ -91,12 +91,12 @@ task CreateGtfFromDatabase {
set -e
mkdir -p "$(dirname ~{outputPrefix})"
talon_create_GTF \
~{"--db=" + databaseFile} \
~{"-b " + genomeBuild} \
~{"-a " + annotationVersion} \
~{"--o=" + outputPrefix} \
~{"--whitelist=" + whitelistFile} \
--db=~{databaseFile} \
-b ~{genomeBuild} \
-a ~{annotationVersion} \
--o=~{outputPrefix} \
~{true="--observed" false="" observedInDataset} \
~{"--whitelist=" + whitelistFile} \
~{"-d " + datasetFile}
}
......@@ -142,8 +142,8 @@ task FilterTalonTranscripts {
set -e
mkdir -p "$(dirname ~{outputPrefix})"
talon_filter_transcripts \
~{"--db=" + databaseFile} \
~{"-a " + annotationVersion} \
--db=~{databaseFile} \
-a ~{annotationVersion} \
~{"--o=" + outputPrefix + "_whitelist.csv"} \
~{"-p " + pairingsFile}
}
......@@ -187,9 +187,9 @@ task GetReadAnnotations {
set -e
mkdir -p "$(dirname ~{outputPrefix})"
talon_fetch_reads \
~{"--db " + databaseFile} \
~{"--build " + genomeBuild} \
~{"--o " + outputPrefix} \
--db ~{databaseFile} \
--build ~{genomeBuild} \
--o ~{outputPrefix} \
~{"--datasets " + datasetFile}
}
......@@ -235,14 +235,14 @@ task InitializeTalonDatabase {
set -e
mkdir -p "$(dirname ~{outputPrefix})"
talon_initialize_database \
~{"--f=" + GTFfile} \
~{"--g=" + genomeBuild} \
~{"--a=" + annotationVersion} \
~{"--l=" + minimumLength} \
~{"--idprefix=" + novelIDprefix} \
~{"--5p=" + cutoff5p} \
~{"--3p=" + cutoff3p} \
~{"--o=" + outputPrefix}
--f=~{GTFfile} \
--g=~{genomeBuild} \
--a=~{annotationVersion} \
--l=~{minimumLength} \
--idprefix=~{novelIDprefix} \
--5p=~{cutoff5p} \
--3p=~{cutoff3p} \
--o=~{outputPrefix}
}
output {
......@@ -283,7 +283,7 @@ task ReformatGtf {
command {
set -e
talon_reformat_gtf \
~{"-gtf " + GTFfile}
-gtf ~{GTFfile}
}
output {
......@@ -322,9 +322,9 @@ task SummarizeDatasets {
set -e
mkdir -p "$(dirname ~{outputPrefix})"
talon_summarize \
~{"--db " + databaseFile} \
--db ~{databaseFile} \
~{true="--verbose" false="" setVerbose} \
~{"--o " + outputPrefix} \
--o ~{outputPrefix} \
~{"--groups " + datasetGroupsCSV}
}
......@@ -381,11 +381,11 @@ task Talon {
done
talon \
~{"--f " + outputPrefix + "/talonConfigFile.csv"} \
~{"--db " + databaseFile} \
~{"--build " + genomeBuild} \
~{"--threads " + cores} \
~{"--cov " + minimumCoverage} \
~{"--identity " + minimumIdentity} \
--db ~{databaseFile} \
--build ~{genomeBuild} \
--threads ~{cores} \
--cov ~{minimumCoverage} \
--identity ~{minimumIdentity} \
~{"--o " + outputPrefix + "/run"}
>>>
......
......@@ -35,9 +35,9 @@ task GetSJsFromGtf {
set -e
mkdir -p "$(dirname ~{outputPrefix})"
get_SJs_from_gtf \
~{"--f=" + GTFfile} \
~{"--g=" + genomeFile} \
~{"--minIntronSize=" + minIntronSize} \
--f=~{GTFfile} \
--g=~{genomeFile} \
--minIntronSize=~{minIntronSize} \
~{"--o=" + outputPrefix + ".tsv"}
}
......@@ -131,19 +131,19 @@ task TranscriptClean {
set -e
mkdir -p "$(dirname ~{outputPrefix})"
TranscriptClean \
~{"-s " + SAMfile} \
~{"-g " + referenceGenome} \
~{"-t " + cores} \
~{"--maxLenIndel=" + maxLenIndel} \
~{"--maxSJOffset=" + maxSJoffset} \
~{"-o " + outputPrefix} \
-s ~{SAMfile} \
-g ~{referenceGenome} \
-t ~{cores} \
--maxLenIndel=~{maxLenIndel} \
--maxSJOffset=~{maxSJoffset} \
-o ~{outputPrefix} \
~{true="-m true" false="-m false" correctMismatches} \
~{true="-i true" false="-i false" correctIndels} \
~{true="--correctSJs=true" false="--correctSJs=false" correctSJs} \
~{true="--dryRun" false="" dryRun} \
~{true="--primaryOnly" false="" primaryOnly} \
~{true="--canonOnly" false="" canonOnly} \
~{"--bufferSize=" + bufferSize} \
--bufferSize=~{bufferSize} \
~{true="--deleteTmp" false="" deleteTmp} \
~{"-j " + spliceJunctionAnnotation} \
~{"-v " + variantFile}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment