Skip to content

Commit

Permalink
traits-computation-mariantonietta-lamarra-studenti-unisalento-it update
Browse files Browse the repository at this point in the history
  • Loading branch information
qcdis-bot committed Dec 19, 2024
1 parent 54fcaee commit 0480d25
Showing 1 changed file with 45 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ print('option_list')
option_list = list(

make_option(c("--id"), action="store", default=NA, type="character", help="my description"),
make_option(c("--id"), action="store", default=NA, type="character", help="my description")
make_option(c("--param_CalcType"), action="store", default=NA, type="character", help="my description"),
make_option(c("--param_CompTraits"), action="store", default=NA, type="character", help="my description"),
make_option(c("--param_CountingStrategy"), action="store", default=NA, type="character", help="my description"),
make_option(c("--param_hostname"), action="store", default=NA, type="character", help="my description"),
make_option(c("--param_login"), action="store", default=NA, type="character", help="my description"),
make_option(c("--param_password"), action="store", default=NA, type="character", help="my description")
)


Expand Down Expand Up @@ -66,13 +71,48 @@ var_len = length(var)
print(paste("Variable id has length", var_len))

id <- gsub("\"", "", opt$id)
print("Retrieving id")
var = opt$id
print("Retrieving param_CalcType")
var = opt$param_CalcType
print(var)
var_len = length(var)
print(paste("Variable id has length", var_len))
print(paste("Variable param_CalcType has length", var_len))

id <- gsub("\"", "", opt$id)
param_CalcType <- gsub("\"", "", opt$param_CalcType)
print("Retrieving param_CompTraits")
var = opt$param_CompTraits
print(var)
var_len = length(var)
print(paste("Variable param_CompTraits has length", var_len))

param_CompTraits <- gsub("\"", "", opt$param_CompTraits)
print("Retrieving param_CountingStrategy")
var = opt$param_CountingStrategy
print(var)
var_len = length(var)
print(paste("Variable param_CountingStrategy has length", var_len))

param_CountingStrategy <- gsub("\"", "", opt$param_CountingStrategy)
print("Retrieving param_hostname")
var = opt$param_hostname
print(var)
var_len = length(var)
print(paste("Variable param_hostname has length", var_len))

param_hostname <- gsub("\"", "", opt$param_hostname)
print("Retrieving param_login")
var = opt$param_login
print(var)
var_len = length(var)
print(paste("Variable param_login has length", var_len))

param_login <- gsub("\"", "", opt$param_login)
print("Retrieving param_password")
var = opt$param_password
print(var)
var_len = length(var)
print(paste("Variable param_password has length", var_len))

param_password <- gsub("\"", "", opt$param_password)


print("Running the cell")
Expand All @@ -82,12 +122,6 @@ print("Running the cell")



param_hostname = 'https://lifewatch.lab.uvalight.net/webdav/vl-phytoplankton/mariantonietta/'
param_login = 'mariantonietta'
param_password = 'ZTVkNzIzYmI3YjJkNjdlMTY5'
param_CalcType = 'advanced'
param_CompTraits = 'biovolume,totalbiovolume,density,surfacearea,surfacevolumeratio,cellcarboncontent,totalcarboncontent'
param_CountingStrategy = 'density0'

conf_datain1 = "Phytoplankton__Progetto_Strategico_2009_2012_Australia.csv"
conf_datain2 = '2_FILEinformativo_OPERATORE.csv'
Expand Down

0 comments on commit 0480d25

Please sign in to comment.