comparison change_o/select_first_in_clone.r @ 81:b6f9a640e098 draft

Uploaded
author davidvanzessen
date Fri, 19 Feb 2021 15:10:54 +0000
parents 6cd12c71c3d3
children
comparison
equal deleted inserted replaced
80:a4617f1d1d89 81:b6f9a640e098
1 args <- commandArgs(trailingOnly = TRUE)
2
3 input.file = args[1]
4 output.file = args[2]
5
6 print("select_in_first_clone.r")
7 print(input.file)
8 print(output.file)
9
10 input = read.table(input.file, header=T, sep="\t", fill=T, stringsAsFactors=F, quote="")
11
12 input = input[!duplicated(input$CLONE),]
13
14 names(input)[1] = "Sequence.ID"
15
16 write.table(input, output.file, quote=F, sep="\t", row.names=F, col.names=T, na="")