Blame view

upload_sequence.md 505 Bytes
d8b6bc10   Alexis Koralewski   Add schema (Md fi...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
```mermaid
flowchart TD
    A[Receive yaml file]-->B[Load yaml file]
    B-->id1
    subgraph id1 [Transcript file into Sequence]
    subgraph id2 [Process sequence]
    C[Get scientific program of Sequence]-->D[Process form fields]
    end
    id2-->id3
    subgraph id3 [Process albums]
    F[Get album name]-->G[Create album]
    end
    id3-->id4
    subgraph id4 [Process plan]
    H[Process plan fields]-->I[Create plan]
    end
    end
    id1-->J[Create Sequence]
    J-->K[Return sequence id]
```