-
-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Episode 03: Working with Files and Directories -- cat something other than a fastq file #152
Comments
+1 |
@taylorreiter I agree that |
Thanks @aschuerch. this is a good perspective. This part of the lesson comes very early in the workshop. According to instructor training, we should treat the most useful first, so it the only utility of this line is to show them an unuseful way to look at files, I saw we omit it all together. However, if teaching |
I would be fine with omitting cat here and I am pretty sure we can do this safely within the shell lesson, however it would be good to double-check with the subsequent lessons wrangling-genomics and cloud-genomics if this doesn't break anything there. |
Thanks for thinking of how this would affect later lessons @aschuerch. I've just done a search in those two lesson repos and found that https://github.com/datacarpentry/wrangling-genomics/search?q=cat&unscoped_q=cat Based on this, I'm in favor of retaining an introduction to |
With the recent move of the 'file manipulation' part to Extra, we do not touch the metadata anymore within the regular shell lesson. We can use |
I agree, @aschuerch. In addition, as we have the question "How can I view and search file contents" in the overview, I would also consider adding the command line "grep" in order to teach the learner another way to search content in the files. E.g: "grep SAMtools rsmodules.sh". |
The lesson demonstrates
cat
by applyingcat
to a fastq file. Can wecat
a different file instead? When the learners go back to working with full size fastq files,cat
ing the whole file is generally a bad idea because fastq files contain a lot of text. Perhaps we couldcat ~/dc_sample_data/sra_metadata/SraRunTable.txt
?The text was updated successfully, but these errors were encountered: