Difference between revisions of "BCH441 Code submisson instructions"
Jump to navigation
Jump to search
m |
m (→Instructions) |
||
| Line 17: | Line 17: | ||
Coming soon. | Coming soon. | ||
</div> | </div> | ||
| + | |||
| + | Approximately (but details still to be defined): | ||
| + | |||
| + | * All R code must be submitted in exactly the state it was in when it produced the results. | ||
| + | * To ensure that is the case, do not work from scripts step by step but follow the following code paradigm. | ||
| + | |||
| + | <pre> | ||
| + | if (TRUE) { | ||
| + | timestamp(mode="start") | ||
| + | |||
| + | your code ... | ||
| + | print your results | ||
| + | |||
| + | timestamp(mode="stop") | ||
| + | } | ||
| + | </pre> | ||
| + | |||
{{Vspace}} | {{Vspace}} | ||
Revision as of 23:34, 2 October 2020
Code submission instructions
Instructions
Coming soon.
Approximately (but details still to be defined):
- All R code must be submitted in exactly the state it was in when it produced the results.
- To ensure that is the case, do not work from scripts step by step but follow the following code paradigm.
if (TRUE) {
timestamp(mode="start")
your code ...
print your results
timestamp(mode="stop")
}
For ABC-INT Mutation Impact
...
Notes