You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since there isn't a straightforward mapping of sample names to file names, different Illumina programs do that name conversion differently, and duplicate sample names are allowed, we need to switch to using sample numbers and existing files on disk rather than trying to figure out what the files should be named. This can be done internally in the illumina package to start with, with minimal visible changes, before switching the project metadata to be sample-number-based. This change is a first step toward addressing #50.
The text was updated successfully, but these errors were encountered:
New expected behaior: sample_files_for_num is gone and only
sample_paths_for_num should be used instead; missing filenames are
missing in sample_paths_from_num output rather than present but
nonexistent on disk; filename are loaded only during refresh() rather
than in the filename functions.
Switch from predicting filenames from sample sheet information to
parsing it from the fastq.gz files actually on disk. The information is
loaded during refresh() rather than in the filename functions.
Since there isn't a straightforward mapping of sample names to file names, different Illumina programs do that name conversion differently, and duplicate sample names are allowed, we need to switch to using sample numbers and existing files on disk rather than trying to figure out what the files should be named. This can be done internally in the
illumina
package to start with, with minimal visible changes, before switching the project metadata to be sample-number-based. This change is a first step toward addressing #50.The text was updated successfully, but these errors were encountered: