view change_o/select_first_in_clone.r @ 87:64bbc6734ec7 draft

"planemo upload commit 0dcc3e4e47a066373ff0bd56f16536298f8ac2a0"
author rhpvorderman
date Wed, 27 Oct 2021 11:30:25 +0000
parents 6cd12c71c3d3
children
line wrap: on
line source

args <- commandArgs(trailingOnly = TRUE)

input.file = args[1]
output.file = args[2]

print("select_in_first_clone.r")
print(input.file)
print(output.file)

input = read.table(input.file, header=T, sep="\t", fill=T, stringsAsFactors=F, quote="")

input = input[!duplicated(input$CLONE),]

names(input)[1] = "Sequence.ID"

write.table(input, output.file, quote=F, sep="\t", row.names=F, col.names=T, na="")