-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
16 changed files
with
377 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,14 +81,14 @@ the value simply by typing in a standard spreadsheet fashion. | |
|
||
String cell editing | ||
|
||
Special syntax is available for basic string values: | ||
Special syntax is available for basic string and/or numeric values: | ||
|
||
Value as List | ||
You can enter a list of values by separating single values with the | ||
semicolon character (``;``). | ||
semicolon character (``;``). This works for both string and numeric columns. | ||
Hyperlinks | ||
You can render the value as a hyperlink the following syntax: | ||
``Link text <https://your.url>`` | ||
``Link text <https://your.url>``. This is only allowed for string columns. | ||
|
||
There are also special cases for string input and specific columns: | ||
|
||
|
@@ -103,7 +103,9 @@ Node Names | |
orphaned files. | ||
Contacts | ||
Contact cells act as string cells with the following expected syntax: | ||
``Contact Name <[email protected]>``. The email can be omitted. | ||
``Contact Name <[email protected]>``. The email can be omitted. Multiple | ||
contacts can be provided using the semicolon character as a delimter. For | ||
example: ``Contact1 <c1.example.com>;Contact1 <c2.example.com>``. | ||
Dates | ||
Date cells also provide standard string editing but enforce the ISO 8601 | ||
``YYYY-MM-DD`` syntax. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Generated by Django 4.2.16 on 2024-10-30 13:45 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("samplesheets", "0022_update_igv_genome"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="process", | ||
name="performer", | ||
field=models.CharField( | ||
blank=True, help_text="Process performer (optional)", null=True | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.