Repository 'r_goseq_1_22_0'
hg clone https://toolshed.g2.bx.psu.edu/repos/mvdbeek/r_goseq_1_22_0

Changeset 10:7f8d888e3355 (2016-02-25)
Previous changeset 9:d1eed994287a (2016-02-25) Next changeset 11:1802ccf465b8 (2016-02-25)
Commit message:
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/goseq_1_22_0 commit fdd0811efc61c31f88ff17096fbe8ee8cfacd766-dirty
modified:
get_length_and_gc_content.r
b
diff -r d1eed994287a -r 7f8d888e3355 get_length_and_gc_content.r
--- a/get_length_and_gc_content.r Thu Feb 25 06:16:23 2016 -0500
+++ b/get_length_and_gc_content.r Thu Feb 25 06:18:47 2016 -0500
b
@@ -17,7 +17,7 @@
 
 GTFfile = args$gtf
 FASTAfile = args$fasta
-output = args$output
+output_file = args$output
 
 #Load the annotation and reduce it
 GTF <- import.gff(GTFfile, format="gtf", genome=NA, feature.type="exon")
@@ -42,4 +42,4 @@
 output <- t(sapply(split(reducedGTF, elementMetadata(reducedGTF)$gene_id), calc_GC_length))
 colnames(output) <- c("Length", "GC")
 
-write.table(output, file="GC_lengths.tsv", sep="\t")
\ No newline at end of file
+write.table(output, file=output_file, sep="\t")
\ No newline at end of file