Skip to content

Commit

Permalink
Fixed bug where number of reps wasn't printing. #45
Browse files Browse the repository at this point in the history
  • Loading branch information
emhart committed Feb 28, 2015
1 parent 774eb2f commit 5a14f61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/null_model_engine.R
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ null_model_engine <- function(speciesData, algo, metric, nReps = 1000, rowNames



nullModelOut <- list(Obs=obs,Sim=sim, Elapsed.Time=elapsedTime, Time.Stamp=timeStamp,Metric = metric, Algorithm = algo, n.reps = nReps,
nullModelOut <- list(Obs=obs,Sim=sim, Elapsed.Time=elapsedTime, Time.Stamp=timeStamp,Metric = metric, Algorithm = algo, nReps = nReps,
Reproducible = saveSeed,RandomSeed = randomSeed, Data = speciesData,Randomized.Data = finalRandomData)
class(nullModelOut) <- "nullmod"
return(nullModelOut)
Expand Down

0 comments on commit 5a14f61

Please sign in to comment.