Commit 25eeef1a authored by Gaetano Scandariato's avatar Gaetano Scandariato
Browse files

Initial repository scaffolding for TOSC completed with full documentation,...

Initial repository scaffolding for TOSC completed with full documentation, metadata, and open-source license (MIT).

Added README, input format docs, CONTRIBUTING, CODE_OF_CONDUCT, CHANGELOG, CITATION.cff, CITATION.bib, .gitlab templates, .gitlab-ci.yml, .gitignore, .editorconfig, and LICENSE.
parents
Loading
Loading
Loading
Loading
Loading

.editorconfig

0 → 100644
+10 −0
Original line number Diff line number Diff line
root = true

[*.{r,R,md,txt,yml,yaml,cff}]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
 No newline at end of file

.gitignore

0 → 100644
+18 −0
Original line number Diff line number Diff line
# R session and history
.Rhistory
.RData
.Rproj.user/

# OS files
.DS_Store
Thumbs.db

# Logs and temporary outputs
*.log
*.tmp
*.bak

# Local output artifacts
output/*
!output/.gitkeep
 No newline at end of file

.gitlab-ci.yml

0 → 100644
+11 −0
Original line number Diff line number Diff line
stages:
  - validate

validate:r-syntax:
  stage: validate
  image: r-base:latest
  script:
    - Rscript -e "parse(file='TOSC.r'); parse(file='input/makeTable.r'); cat('R syntax OK\n')"
  rules:
    - if: $CI_PIPELINE_SOURCE
 No newline at end of file
+28 −0
Original line number Diff line number Diff line
## Summary

Describe the bug clearly.

## Steps to Reproduce

1. 
2. 
3. 

## Expected Behavior

Describe what should happen.

## Observed Behavior

Describe what actually happened.

## Environment

- OS:
- R version:
- Input files used:

## Additional Context

Add plots, logs, or notes that help diagnosis.
 No newline at end of file
+20 −0
Original line number Diff line number Diff line
## Problem

What limitation are you trying to solve?

## Proposed Change

Describe the feature you want.

## Scientific/Technical Impact

Explain expected impact on analysis quality, speed, or usability.

## Alternatives Considered

List alternatives you evaluated.

## Additional Context

Add references, examples, or related issues.
 No newline at end of file