Skip to content

Instantly share code, notes, and snippets.

@mribeirodantas
Created March 3, 2020 10:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mribeirodantas/6f6b3870aaca1c1f0b2af2591594a1aa to your computer and use it in GitHub Desktop.
Save mribeirodantas/6f6b3870aaca1c1f0b2af2591594a1aa to your computer and use it in GitHub Desktop.
# Results
# Create a final.R file with the content below.
input_file <- read.csv2(file = 'output_dir/all.edges.summary.csv')
input_file <- input_file[input_file$type == 'P', ]
write.csv2(input_file[, c('x', 'y')],
'output_dir/retained.edges.csv',
row.names=FALSE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment